Advertisement
1m1m0

Star (Trail Color Jitter)

Jan 1st, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. local Trail = script.Parent:WaitForChild("Trail")
  2. local r = math.random()
  3. local g = math.random()
  4. local b = math.random()
  5. local color = Color3.new(r, g, b)
  6. local colorSequence = ColorSequence.new(color)
  7. Trail.Color = colorSequence
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement