game.Players.PlayerAdded:connect(onPlayerRespawned) function onPlayerRespawned(newPlayer) wait(1) local Person = newPlayer.Name if Person == "Player" then local shirt = Instance.new("Shirt") shirt.Parent = newPlayer.Character.Torso shirt.ShirtTemplate = "http://www.roblox.com/asset?id=77132660" print "Worked" end end function onPlayerEntered(newPlayer) newPlayer.Changed:connect(function (property) if (property == "Character") then onPlayerRespawned(newPlayer) end end) end game.Players.PlayerAdded:connect(onPlayerEntered)
the script is supposed to give me a Lua Tee when I play, and it works because it prints Worked afterwards and gives me the ID in the character, but IDK what is going wrong, please help!