Reducing tool drop distance? (Hopperbin)
I made a sword by using a hopperbin and pressing the 'e' button makes the hopperbin drop at where the mouse is, i was wondering about how i could limit the furthest point it can be dropped to WITHOUT stopping the drop action. Basicly, i still want it to drop in the same direction but i only want it to drop (let's say) 5 studs far from the player. How can i accomplish this?
01 | mouse.KeyDown:connect( function (key) |
02 | key = string.lower(key) |
03 | if key = = "e" and holding then |
06 | tool.Parent = workspace |
08 | if (char.Torso.CFrame.p - mouse.Hit.p).magnitude > dropdistance then |
09 | model._Handle.CFrame = mouse.Hit * CFrame.new( 0 , 5 , 0 ) |