Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make this color changing script work? I'm new to scripting

Asked by 4 years ago
Edited 4 years ago
01local Bruh = script.Parent
02 
03while true do
04    wait(1)
05    Bruh.Color3 = ('0,255,0')
06    wait(1)
07    Bruh.Color3 = ('0,0,255')
08    wait(1)
09    Bruh.Color3 = ('255,0,0')
10    wait(1)
11end

4 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

You cannot change an RGB value (Color3 value) like that.

You use fromRGB()

01local Bruh = script.parent
02 
03while true do
04wait(1)
05Bruh.Color = Color3.fromRGB(0,255,0)
06wait(1)
07Bruh.Color = Color3.fromRGB(0,0,255)
08wait(1)
09Bruh.Color = Color3.fromRGB(255,0,0)
10wait(1)
11end
0
Lol, I'm sorry. I had made an incorrect script 2 times. So i have to edit it 2 times. rayhansatria 142 — 4y
0
But It work's now! rayhansatria 142 — 4y
0
Hope your happy with it. rayhansatria 142 — 4y
0
Thank you, that really helps! mickey10045 -3 — 4y
Ad
Log in to vote
0
Answered by
naturedat 124
4 years ago

Here:

1local Bruh = script.Parent
2while true do
3    wait(1)
4    Bruh.BrickColor = BrickColor.new(0,255,0)
5    wait(1)
6    Bruh.BrickColor = BrickColor.new(0,0,255)
7    wait(1)
8    Bruh.BrickColor = BrickColor.new(255,0,0)
9end
0
Naturedat, It doesn't work like that. rayhansatria 142 — 4y
0
Oh nvm, it works. lol rayhansatria 142 — 4y
0
Cool :) naturedat 124 — 4y
Log in to vote
0
Answered by
sngnn 274 Moderation Voter
4 years ago
Edited 4 years ago

HSV has hue as its first value. You could simply tween that value:

1local TweenService = game:GetService("TweenService")
2local Part = workspace.Part
3 
4local Info = TweenInfo.new(1,"Quad","Out",-1) --Except for repeat count, all default values
5TweenService:Create(Part,Info,{Color = Color3.fromHSV(1,1,1)}):Play()

Note: changing TweenInfo's repeat count to a negative value will indefinitely loop the tween.

(TweenService)

Log in to vote
0
Answered by 4 years ago

I'm not to good at color stuff but this might work. Also when posting code put it in a lua code block.

01local Bruh = script.Parent
02 
03while true do
04wait(1)
05Bruh.Color3 = Color3.fromRGB ('0,255,0')
06wait(1)
07Bruh.Color3 = Color3.fromRGB('0,0,255')
08wait(1)
09Bruh.Color3 =  Color3.fromRGB('255,0,0')
10wait(1)
11end

Answer this question