Advertisement
TheUltimateRG

game script 1

Aug 9th, 2022
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. local player = {"dantdmdarealguy"}
  2. local MK18 = game.ServerStorage["MK18"]
  3. local G22 = game.ServerStorage["Glock 22"]
  4. local BSG = game.ServerStorage["Breaching Shotgun"]
  5.  
  6. game.Players.PlayerAdded:connect(function(plr)
  7.     plr.CharacterAdded:connect(function(chr)
  8.         for i = 1, #player do
  9.             if player[i] == plr.Name then
  10.                 MK18:Clone().Parent = plr:WaitForChild("Backpack")
  11.                 G22:Clone().Parent = plr:WaitForChild("Backpack")
  12.                 BSG:Clone().Parent = plr:WaitForChild("Backpack")
  13.             end
  14.         end
  15.     end)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement