Revision Difference
Player:GodEnable#527828
<function name="GodEnable" parent="Player" type="classfunc">
<description>Enables god mode on the player.</description>
<realm>Server</realm>
<file line="251-L259">lua/includes/extensions/player.lua</file>
</function>
<example>
<description>Enable god mode on all players</description>⤶
<description>Enable god mode on all players.</description>⤶
<code>
for i, ply in ipairs( player.GetAll() ) do
for _, ply in ipairs( player.GetAll() ) do
ply:GodEnable()
end
</code>
⤶
</example></example>