Color3 value not being updated correctly when used in a variable?
Asked by
7 years ago Edited 7 years ago
I'm currently working on a system whereby a player selects a colour in a GUI, which is then sent to the server to change the Color3 value of a certain group of parts using a RemoteEvent. I'm experiencing a problem whereby, when called in a variable named 'colour', the Color3 value of the parts is set to 0,0,0.
There are no errors in the Output Log.
Here is the associated LocalScript (I have annotated so it is clearer what I am doing and if I've made an error somewhere):
01 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local updateColourEvent = replicatedStorage:WaitForChild( "UpdateColourEvent" ) |
07 | local hilt = game.Workspace:WaitForChild( "Hilt1" ) |
08 | local forward = script.Parent.Forwards |
09 | local back = script.Parent.Backwards |
10 | colour = script.Parent.Colour.BackgroundColor 3 |
13 | [ "Red" ] = Color 3. new( 1 , 0 , 0 ), |
14 | [ "Green" ] = Color 3. new( 0.4 , 1 , 0.5 ), |
15 | [ "Blue" ] = Color 3. new( 0.2 , 0.2 , 1 ), |
16 | [ "Purple" ] = Color 3. new( 0.6 , 0 , 1 ), |
17 | [ "Cyan" ] = Color 3. new( 0 , 1 , 1 ), |
18 | [ "Orange" ] = Color 3. new( 1 , 0.4 , 0 ), |
19 | [ "Pink" ] = Color 3. new( 1 , 0 , 0.9 ) |
24 | forward.MouseButton 1 Click:connect( function () |
25 | print ( "Setting colour..." ) |
27 | if colour = = colours [ "Red" ] then |
28 | print ( "Current colour is red, setting to green." ) |
29 | script.Parent.Colour.BackgroundColor 3 = Color 3. new( 0.4 , 1 , 0.5 ) |
30 | colour = script.Parent.Colour.BackgroundColor 3 |
32 | updateColourEvent:FireServer(colour) |
And here is the associated Server Script (also annotated):
03 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local updateColourEvent = Instance.new( "RemoteEvent" , replicatedStorage) |
05 | local hilt = script.Parent |
07 | updateColourEvent.Name = "UpdateColourEvent" |
09 | updateColourEvent.OnServerEvent:connect( function (player,colour) |
11 | for i, child in pairs (hilt:GetChildren()) do |
12 | if child.Name = = "Primary" then |
13 | child.Color = Color 3. new(colour) |
As described by my annotations, when the players clicks on the button to switch colour, a variable named 'colour' is updated and sent to the Server with the RemoteEvent (in ReplicatedStorage). The Server Script takes the Color3 value in the variable and sets all parts named "Primary" in the model to have that colour.
Instead of setting to the value of 'colour', however, the parts get the Color3 Value, 0,0,0.
Any ideas as to what I've done wrong would be hugely appreciated. I am more than happy to provide more information on my set-up if necessary.