What do you want to achieve? I’m trying to use a script that will god the player if they’re above a certain rank in the group.
What is the issue? It doesn’t work; I attached a photo of the output below.
I’m not good at scripting, so bear with me here.
Code:
game.Workspace.ChildAdded:connect(function(Player)
if Player:GetRankInGroup(7634323) >= 5 then
Player.Humanoid.MaxHealth = math.huge
Player.Humanoid.Health = math.huge
end
end)