thewobblemr

Trampoline script roblox studio (fixed)

Dec 7th, 2022
447
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function onTouched(part)
  2. if part.Parent ~= nil then
  3. local h = part.Parent:findFirstChild("Humanoid")
  4. if h~=nil then
  5.  
  6. h.Parent.Torso.Velocity=Vector3.new(0,100,0)
  7. wait(0.5)
  8.  
  9. end
  10. end
  11. end
  12.  
  13. script.Parent.Touched:connect(onTouched)
  14.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment