of     1   

xXSurpremeSavageXx
#226413437Sunday, October 15, 2017 12:59 PM GMT

i need some help on making players float in this game im gonna make so please tell me how or just send me link to a vid that tells me how
MonoBlockZ
#226413803Sunday, October 15, 2017 1:11 PM GMT

There are a lot of ways, they depend on how you want the player to float Though you can try using BodyVelocity, search it in google if you don't know what it is
MonoBlockZ
#226413850Sunday, October 15, 2017 1:12 PM GMT

Or BodyPosition if you want to float on a specific position
xXSurpremeSavageXx
#226414177Sunday, October 15, 2017 1:23 PM GMT

but what about all the players?
d00minator
#226414315Sunday, October 15, 2017 1:27 PM GMT

Just get IT in there... He will make them float for you
MonoBlockZ
#226414460Sunday, October 15, 2017 1:32 PM GMT

Make a script inside workspace, double click the script, and copy paste this code: game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function(char) wait(1)--Change how long to wait before the player float (In seconds) local body = char:WaitForChild("HumanoidRootPart") local velocity = Instance.new("BodyVelocity") velocity.Velocity = Vector3.new(0, 10, 0)--Change speed of velocity velocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge) velocity.Parent = body end) end)
xXSurpremeSavageXx
#226414819Sunday, October 15, 2017 1:43 PM GMT

thanks dude i really appreciate it :D

    of     1