Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function colorzap(i)
- local colors = {"Really red","Bright orange","New Yeller","Bright green","Really blue","Dark indigo","Eggplant",}
- for key, value in ipairs(colors) do
- local cube = Instance.new("Part",workspace)
- cube.BrickColor = BrickColor.new(value)
- cube.Position = Vector3.new(i,0,0)
- cube.Anchored = true
- end
- end
- for i = 0, 100, 1 do
- colorzap(i)
- wait(.1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement