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

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):

01local replicatedStorage = game:GetService("ReplicatedStorage")
02local updateColourEvent = replicatedStorage:WaitForChild("UpdateColourEvent")
03-- (Above) Setting up RemoteEvent
04 
05wait(1)
06 
07local hilt = game.Workspace:WaitForChild("Hilt1") -- The model that holds the parts
08local forward = script.Parent.Forwards -- The button pressed to trigger the colour change
09local back = script.Parent.Backwards -- Not used yet
10colour = script.Parent.Colour.BackgroundColor3 -- The current colour the client has selected
11 
12colours = { -- Dictionary to hold the available colours
13    ["Red"] = Color3.new(1,0,0),
14    ["Green"] = Color3.new(0.4,1,0.5),
15    ["Blue"] = Color3.new(0.2,0.2,1),
View all 35 lines...

And here is the associated Server Script (also annotated):

01--LukeSmasher
02 
03local replicatedStorage = game:GetService("ReplicatedStorage")
04local updateColourEvent = Instance.new("RemoteEvent", replicatedStorage)
05local hilt = script.Parent
06 
07updateColourEvent.Name = "UpdateColourEvent"
08 
09updateColourEvent.OnServerEvent:connect(function(player,colour)
10    print(colour) -- Prints value correctly
11    for i, child in pairs(hilt:GetChildren()) do
12        if child.Name == "Primary" then -- Parts named 'Primary need to be re-coloured to the value of x
13            child.Color = Color3.new(colour) -- Parts' colour given value of 0,0,0
14            print(colour) -- 'colour' still has correct value when printed
15        end
16    end
17end)

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.

1 answer

Log in to vote
1
Answered by 7 years ago

On line 13 of your ServerScript try changing:

1child.Color = Color3.new(colour)

For just:

1child.Color = colour

Since your colour variable is already a Color3 one. Still, not sure if this will fix your problem, but its worth a shot.

Best of lucks!

1
That sorted it, thanks a bunch! LukeSmasher 619 — 7y
Ad

Answer this question