of     1   

JellyYn
#219057516Saturday, June 17, 2017 4:06 AM GMT

So, I posted this in Scripters, but the script I was given didn't work :P (Not given actually, just told what i need to do) I am trying a script, and need help with it. It should be exTREMEly simple, but I can't figure it out ;/ local player = game.Players.LocalPlayer player.Humanoid.JumpPower = 5 --[[ or should I use player.Humanoid.Jump = false --]] What do I need to do? I tried using these already : game:GetService('Players').LocalPLayer.Humanoid.Jump = false *and* game:GetService('Players').LocalPlayer.Humanoid.JumpPower = 5 It would be AMAZING if someone could help me :P
JellyYn
#219057982Saturday, June 17, 2017 4:14 AM GMT

NVM, i figured it out :P local player = game.Players.LocalPlayer local character = player.CharacterAdded:wait() local Humanoid = character:WaitForChild("Humanoid") Humanoid.JumpPower = 0
Camper0008
#219069917Saturday, June 17, 2017 9:14 AM GMT

kinda overdone ➟ When life gives you lemons, make apple-juice to assert dominance.
JellyYn
#219088856Saturday, June 17, 2017 4:26 PM GMT

@Camper008 Is this better? : local humanoid = game.Players.LocalPlayer.CharacterAdded.Humanoid wait(0.1) -- prevent lag humanoid.JumpPower = 0

    of     1