I’m trying to change some beam’s colors to 3 keypoints, white, red, white, example here:
I made this script:
for i,v in pairs(workspace.Teleporters.MediaHall:GetDescendants()) do
if v:IsA("Beam") then
v.Color = ColorSequence.new(
Color3.fromRGB(255, 255, 255),
Color3.fromRGB(255, 0, 0),
Color3.fromRGB(255, 255, 255)
)
end
end
But when I run it this is the result I get:
Any help would be nice thanks!