How to make if player Team = red then script = Disabled ?
(with loop (while true do) )
Thank u and best regards -PPJASK
local Red = game:GetService("Teams")["Red"] if player.Team == Red then script.Disabled = true end
Ok, this might not work.
local player = game.Players.LocalPlayer local exampleScript = game.ServerScriptService.exampleScript if player.Team = "Bright Red" then do exampleScript.Disabled = true end)