miissso

fdg

May 13th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. wait(1.5)
  2.  
  3. local Name = "RogueTesting"
  4. while true do
  5. local Number1 = math.random()
  6. local Number2 = math.random()
  7. local Number3 = math.random()
  8. local Part = Instance.new("Part")
  9. Part.Parent = game.Workspace
  10. Part.Position = game.Workspace:FindFirstChild(Name).HuamnoidRootPart.Position - Vector3.new (0, 3, 0) --Use Torso on R6 games--
  11. Part.Size = Vector3.new(1, 1, 1)
  12. Part.Color = Color3.new(Number1, Number2, Number3)
  13. Part.Anchored = true
  14. Part.CanCollide = false
  15. wait(0.01)
  16. end
Add Comment
Please, Sign In to add comment