Advertisement
Anukun_Lucifer

JumpScript

Jul 9th, 2023
1,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | Source Code | 0 0
  1. pad = script.Parent
  2.  
  3. function jump (hit)
  4.     if hit.Parent:FindFirstChild("Humanoid")  then
  5.         local humanoid = hit.Parent:FindFirstChild("Humanoid")
  6.         humanoid.JumpHeight = 370
  7.         humanoid.Jump = true
  8.         wait(0.5)
  9.         humanoid.JumpHeight = 15
  10.     end
  11. end
  12.  
  13. pad.Touched:Connect(jump)
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement