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

Setting The Color3 Of A Tool Not Working?

Asked by
stef0206 125
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

01script.Parent.Equipped:Connect(function()
02    loop = true
03end)
04 
05script.Parent.Unequipped:Connect(function()
06    loop = false
07end)
08 
09while wait(.1) do
10    if loop == true then
11        game.ReplicatedStorage.RemoteEvent:FireServer("ColorSword", 0)
12    end
13end

Script Inside ServerScriptService

01local event = game:GetService("ReplicatedStorage").RemoteEvent
02 
03event.OnServerEvent:Connect(function(plr, event, value)
04    if plr.Character:FindFirstChildOfClass("Tool") then
05        x = 255
06        y = 255
07        z = 255
08        if plr.leaderstats.Rep.Value > 0 then
09            if plr.leaderstats.Rep.Value <= 100 then
10                x = 255
11                y = 255
12                z = math.floor(255 / 100 * plr.leaderstats.Rep.Value)
13            else
14                x = 255
15                y = 255
View all 36 lines...

Script Inside of Tool

1while wait() do
2    script.Parent.Handle.Color = script.Parent.SwordColor.Value
3end

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!

1
Color3.fromRGB(0~255,0~255,0~255) arshad145 392 — 6y
1
Color3.new(0~1,0~1,0~1) arshad145 392 — 6y
0
So, you use Color3.fromRGB. arshad145 392 — 6y
0
Oh stef0206 125 — 6y
View all comments (2 more)
0
Thank you! stef0206 125 — 6y
0
You're welcome. arshad145 392 — 6y

Answer this question