Advertisement
dahpiglz

Swim Mid Air

Dec 10th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local humanoid = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  2. humanoid:SetStateEnabled(Enum.HumanoidStateType.GettingUp, false)
  3. humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, false)
  4. humanoid:SetStateEnabled(Enum.HumanoidStateType.Climbing, false)
  5. humanoid:ChangeState(Enum.HumanoidStateType.Swimming)
  6. local p = Instance.new("BodyVelocity")
  7. p.Velocity = Vector3.new(0, 10, 0)
  8. p.MaxForce = Vector3.new(750, 2350, 750)
  9. p.P = 1250
  10. p.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement