local RunService = game:GetService("RunService") local Remote = game:GetService("Players").LocalPlayer.PlayerGui.ColorGui.MainSystem.Event local ohString2 = "CarColor" local speed = 0.5 RunService.RenderStepped:Connect(function() local hue = (tick() * speed) % 1 local rainbowColor = Color3.fromHSV(hue, 1, 1) Remote:FireServer(rainbowColor, ohString2) end)