#fixed

5 messages · Page 1 of 1 (latest)

oak dome
#

Players is a table, and there’s no character in that table

#

You would have to loop through the players on the team and then heal them individually

icy nova
#

im sorry, im dumb. How would i do that?

wraith geyser
#
script.Parent.Heal.OnServerEvent:Connect(function(player, team)
    if player.TeamColor == team then
    player.Character.Humanoid.Health += 10
    print("Healed")
    end
end)
``` The player is passed as the first argument to OnServerEvent by the remote event
icy nova
#

thank you sm