Advertisement
irishWarlock89

Jumping Bean Script

Jun 24th, 2025
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.17 KB | Source Code | 0 0
  1. local part = script.Parent
  2. local force = 100
  3.  
  4. while true do
  5.     part.Velocity = Vector3.new(math.random(-10, 10),
  6.         force,
  7.         math.random(-10, 10)
  8.     )
  9.     task.wait(2)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement