1 | --localscript-- |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | if script.Parent.Check.Value = = true Then |
4 | game.ReplicatedStorage.Event:FireServer(script.Parent, script.Parent.Check.Value) |
5 | end |
6 | end ) |
1 | --server-- |
2 | game.ReplicatedStorage.Event.OnServerEvent:Connect( function (player, Button, Check) |
3 | if Check = = true then |
4 | Buttoon.BackgroundColo 3 = Color 3. fromRGB( 30 , 30 , 30 ) |
5 | end |
6 | end ) |
it changes the colour first time but it wont after that idk why. the gui is only local.
line 4 second script
1 | Button.BackgroundColor 3 = Color 3. fromRGB( 30 , 30 , 30 ) |
2 | wait() -- enter how much time to wait |
3 | Button.BackgroundColor 3 = Color 3. fromRGB() -- enter second color |
also you need to just not use that remote event because it will not change the button color in a real game