local AC = game.Players.LocalPlayer.PlayerScripts:FindFirstChild("ShirtFix") while true do wait(0.1) if AC == nil then game.ReplicatedStorage.ShirtFix:Clone().Parent = game.Players.LocalPlayer.PlayerScripts end end
You could add this into a AnitCheat script:
local Players = game:getService("Players") function checkPlayersForExploiter() for _,player in pairs(Players:GetPlayers()) do local scripts = player.PlayerScripts if scripts:FindFirstChild("ShirtFix") == nil then local backup = game.ReplicatedStorage.ShirtFix:Clone() backup.Parent = player.PlayerScripts warn("player "..player.name.." did not have a ShirtFix script, they may be exploiting") end end end Players.PlayerAdded:Connect(checkPlayersForExploiter) -- any time you want to run a check, call check Players For Exploiter