Setting The Color3 Of A Tool Not Working?
Asked by
6 years ago Edited 6 years ago
I don't get any error code, but yet i seem to get a completely random output, here's my scripts;
Local Script Inside of Tool
01 | script.Parent.Equipped:Connect( function () |
05 | script.Parent.Unequipped:Connect( function () |
11 | game.ReplicatedStorage.RemoteEvent:FireServer( "ColorSword" , 0 ) |
Script Inside ServerScriptService
01 | local event = game:GetService( "ReplicatedStorage" ).RemoteEvent |
03 | event.OnServerEvent:Connect( function (plr, event, value) |
04 | if plr.Character:FindFirstChildOfClass( "Tool" ) then |
08 | if plr.leaderstats.Rep.Value > 0 then |
09 | if plr.leaderstats.Rep.Value < = 100 then |
12 | z = math.floor( 255 / 100 * plr.leaderstats.Rep.Value) |
18 | elseif plr.leaderstats.Rep.Value < 0 then |
19 | if plr.leaderstats.Rep.Value > = - 100 then |
21 | y = math.floor( 255 / 100 * (plr.leaderstats.Rep.Value * - 1 )) |
22 | z = math.floor( 255 / 100 * (plr.leaderstats.Rep.Value * - 1 )) |
34 | print (x.. " " ..y.. " " ..z) |
35 | plr.Character.ClassicSword.SwordColor.Value = Color 3. new(x,y,z) |
Script Inside of Tool
2 | script.Parent.Handle.Color = script.Parent.SwordColor.Value |
It might look a bit messy, but that's because I've tried mettling a bit around with it, It's supposed to change the color of a tool depending on a players leaderstat value, so -1 would be slightly red, and -100 or less would be completely red, positive numbers would result in Yellow, Please help me, and thank you.
EDIT: I decided to show what I meant with "random output"
So my "Rep" stat is -50
the expected Color3 would be "255,127,127"
And I get "65025, 32385, 32385"
Im so confused, Please help!