Advertisement
tommarek_CZE

Untitled

Nov 10th, 2022
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. --for MetaMethod | Mentorship Program
  2. local Players = game:GetService("Players")
  3. local Tool = game:GetService("ServerStorage"):WaitForChild("Tool")
  4.  
  5. local function onPlayerAdded(plr)
  6.     print("Player Added")
  7.     local clone = Tool:Clone()
  8.     clone.Parent = plr.Backpack
  9.  
  10. end
  11.  
  12. Players.PlayerAdded:Connect(onPlayerAdded)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement