TheUnknownDiscord

Untitled

Sep 4th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. part1 = Instance.new("Part", owner.Character)
  2. part1.CFrame = CFrame.new(0,1,0)
  3.  
  4. function thinghere(part)
  5. if part.Name ~= "Base" then
  6. local velocity = Instance.new("BodyVelocity", part)
  7. velocity.Velocity = Vector3.new(50,50,0)
  8. velocity.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  9. wait(1)
  10. velocity:Destroy()
  11. end
  12. end
  13. part1.Touched:Connect(thinghere)
Advertisement
Add Comment
Please, Sign In to add comment