Ok, So I coded this a while back taking advantages of how Some GodModes work
Such as FEGodMode,
While this might destroy ScriptKiddes it wont destroy Experienced Scripters, how could I improve this script?
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
while wait(0.5) do
local antiFeGodWeld = char.Head:FindFirstChild("PartWeld")
if not antiFeGodWeld then
plr:Kick("Kicked for Gmode!")
end
end
end)
end)