RobloxScripter133Hmm

Roblox Trampoline Adder

Sep 1st, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local Part = instance.new("Part",game.Workspace)
  2. Part.Anchored = true
  3. Part.Position = game.Workspace.MrRobloxTutorialsGo.Torso.Posision
  4. Part.BrickColor = BrickColor.new("Really black")
  5.  
  6. Part.touched:Connect(function(plr)
  7. if plr.Parent:FindFirstChild("Humanoid") then
  8. plr.Parent.Humanoid.JumpPower = 250
  9. plr.Parent.Humanoid.Jump = true
  10. wait(0.5)
  11. plr.Parent.Humanoid.JumpPower = 50
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment