Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Roblox tutorial
- --Roblox rainbow script
- --NOT MENT TO BE USED FOR MALICIOUS INTENTIONS
- --DELETE ALL OF THIS WHEN YOU HAVE PASTED IT!
- --HAVE A GREAT DAY!!
- --[[
- Script USED IN VIDEO ⬇️
- --]]
- --copy all of this starting from this line
- while true do
- wait(0.5)
- --color 3 values consists of red, green, blue
- local red
- local green
- local blue
- red = math.random(0.001, 1.0)
- green = math.random(0.001, 1.0)
- blue = math.random(0.001, 1)
- local tweenservice = game:GetService("TweenService")
- local info
- local goal
- info = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 0)
- goal = {Color = Color3.new(red, green, blue)}
- local tween = tweenservice:Create(script.Parent, info, goal)
- tween:Play()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement