function IsVIP(ply) if ply:IsUserGroup("vip") then ply:SetHealth(200) ply:Give( "weapon_ttt_health_station" ) endendhook.Add("PlayerSpawn", "VIP", IsVIP)
function roundstartbenefits() for k, v in ipairs(player.GetAll()) do if not v:IsSpec() then if v:IsUserGroup("VIP") then v:Give( "weapon_ttt_health_station" ) v:SetHealth(200) -- Sets to 200 health v:SetMaxHealth(200) -- Sets their max health to 200 too, useful for health machine end end endendhook.Add("TTTBeginRound","newroundbenefits",roundstartbenefits)hook.Add("PlayerSpawn","newroundbenefits",roundstartbenefits)