Advertisement
Sacki

better quicksand script

Sep 26th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function onTouched(hit)
  2. hit.CanCollide = false
  3. local a = Instance.new("BodyVelocity")
  4. a.Parent = hit
  5. a.Velocity = Vector3.new(0, -10, 0)
  6. end
  7. script.Parent.Touched:connect(onTouched)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement