ROBLOX Studio’s mouse selects the entire model that you click on (unless alt is held).
I want to be able to select entire models with my mouse but mouse.Target only selects a specific part? How can I make it select an entire model and it’s descendants with one selection box like ROBLOX Studio does?
local Target = Mouse.Target -- Get's the mouse target
if Target:FindFirstAncestorWhichIsA("Model") then -- looks if there is a model that is an ancestor of the target
-- do something
end