Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a script that flings people?

Asked by 8 years ago

I tried doing this but all I got was people sitting so I deleted the script and forgot it. :/

0
Try using BodyForces. Discern 1007 — 8y
0
thanks it'll go down DarkishPilot -2 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

You will want to use bodyposition and vector3, here is an example to help you out

local b = Instance.new("BodyPosition")
        b.position = Vector3.new(500, 500, 500)
        b.maxForce = Vector3.new(500000000, 500000000, 500000000)
        b.Parent = character.Torso

Hope this helps!

0
Doesnt the position need to be capitalized? iSvenDerp 233 — 8y
Ad

Answer this question