MODIFIED BY egg salad
FEATURE:
- INVINCIBILITY
- .
- NOTE:
- You can still shoot people, but they can’t shoot you
function GodMode(Char)
Char:WaitForChild("Humanoid"):Destroy()
end
local Player = game:GetService("Players").LocalPlayer
Player.CharacterAdded:Connect(GodMode)
if Player.Character then
GodMode(Player.Character)
end