I have been trying to fool around with its, and it's not working, here's my code:
color = Color3.new(math.random(255),math.random(255),math.random(255))
print(color)
script.Parent.BackgroundColor3:lerp(color,0)
I have been trying to fool around with its, and it's not working, here's my code:
color = Color3.new(math.random(255),math.random(255),math.random(255))
print(color)
script.Parent.BackgroundColor3:lerp(color,0)
Copyright © 2021 Jogjafile Inc.
Color3:lerpis a way to interpolate between twoColor3values. It's basically theCFrame:lerpofColor3.The reason the code you provided is not working is because you have the
Deltaargument oflerpset to 0. Here's an example on how to use it properly: