Hasli4

RBLX. Add Task. Green Part

Dec 25th, 2025
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. SpeedBoost = game.Workspace.SpeedInt.Value
  2. local SlowPlate = script.Parent
  3. while true do
  4.     SlowPlate.Color = Color3.fromRGB(255, 0, 0)
  5.     SlowPlate.Velocity = Vector3.new(0, 0, -SpeedBoost)
  6.     wait(1)
  7.  
  8.     SlowPlate.Color = Color3.fromRGB(85, 255, 0)
  9.     SlowPlate.Velocity = Vector3.new(0, 0, SpeedBoost)
  10.     wait(1)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment