Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1.5)
- local Name = "RogueTesting"
- while true do
- local Number1 = math.random()
- local Number2 = math.random()
- local Number3 = math.random()
- local Part = Instance.new("Part")
- Part.Parent = game.Workspace
- Part.Position = game.Workspace:FindFirstChild(Name).HuamnoidRootPart.Position - Vector3.new (0, 3, 0) --Use Torso on R6 games--
- Part.Size = Vector3.new(1, 1, 1)
- Part.Color = Color3.new(Number1, Number2, Number3)
- Part.Anchored = true
- Part.CanCollide = false
- wait(0.01)
- end
Add Comment
Please, Sign In to add comment