Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Workspace.ChildAdded:connect(function(ch)
- wait(1)
- if ch:FindFirstChild("Humanoid") then
- game.StarterGui:SetCore("SendNotification", {
- Title = "Item Logger";
- Text = "Player Spawned: " .. ch.Name;
- })
- else
- game.StarterGui:SetCore("SendNotification", {
- Title = "Item Logger";
- Text = "ChildAdded: " .. ch.Name;
- })
- end
- end)
- game.Players.ChildAdded:connect(function(ch)
- wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Item Logger";
- Text = "New Player: " .. ch.Name;
- })
- end)
- game.Players.ChildRemoved:connect(function(ch)
- wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Item Logger";
- Text = "Removed Player: " .. ch.Name;
- })
- end)
Advertisement
Add Comment
Please, Sign In to add comment