Advertisement
Tsaka

From Raz

May 17th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. AddCmd("Items", "Gets all items", {},
  2. function(Args, Speaker)
  3. GetItems()
  4. end)
  5.  
  6. local Pos = Plr.Character.Head.CFrame
  7.  
  8. AddCmd("Uzi", "Brings uzi", {},
  9. function(Args, Speaker)
  10. TP(CFrame.new(-273.244, 4.076, 362.643))
  11. wait(.5)
  12. TP(Pos)
  13. end)
  14.  
  15. AddCmd("SawedOff", "Brings sawed-off", {},
  16. function(Args, Speaker)
  17. TP(CFrame.new(-249.432, 3.760, -244.452))
  18. wait(.5)
  19. TP(Pos)
  20. end)
  21.  
  22. AddCmd("Glock", "Bring glock", {},
  23. function(Args, Speaker)
  24. TP(CFrame.new(-973.052, 3.400, -92.197))
  25. wait(.5)
  26. TP(Pos)
  27. end)
  28.  
  29. AddCmd("Machete", "Bring machete", {},
  30. function(Args, Speaker)
  31. TP(CFrame.new(-726.784, 4.100, -80.251))
  32. wait(.5)
  33. TP(Pos)
  34. end)
  35.  
  36. AddCmd("Lockpick", "Bring Lockpick", {},
  37. function(Args, Speaker)
  38. TP(CFrame.new(-322.555, 4.706, 364.850))
  39. wait(.5)
  40. TP(Pos)
  41. end)
  42.  
  43. AddCmd("Food", "Brings food", {},
  44. function(Args, Speaker)
  45. TP(CFrame.new(-724.020, 4.450, 125.607))
  46. wait(.5)
  47. TP(Pos)
  48. end)
  49.  
  50. AddCmd("Drink", "Brings Drink", {},
  51. function(Args, Speaker)
  52. TP(CFrame.new(-732.801, 4.450, 125.721))
  53. wait(.5)
  54. TP(Pos)
  55. end)
  56.  
  57. AddCmd("Heal", "Heals you lol", {},
  58. function(Args, Speaker)
  59. TP(CFrame.new(-724.233, 4.410, 125.312))
  60. wait(.5)
  61. TP(CFrame.new(-732.801, 4.450, 125.721))
  62. wait(.5)
  63. TP(Pos)
  64. end)
  65.  
  66. AddCmd("Ammo", "Brings ammo", {},
  67. function(Args, Speaker)
  68. TP(CFrame.new(108.813, 4.320, -67.157))
  69. wait(.5)
  70. TP(Pos)
  71. end)
  72.  
  73. AddCmd("Bt", "Gives hammer tool", {},
  74. function(Args, Speaker)
  75. Instance.new("HopperBin", Plr.Backpack).BinType = "Hammer"
  76. end)
  77.  
  78. AddCmd("Anim", "Load animation", {},
  79. function(Args, Speaker)
  80. local ID = Args[1]
  81. local Anim = Instance.new("Animation")
  82. Anim.AnimationId = "http://www.roblox.com/Asset?ID=" .. ID
  83. local Track = Plr.Character.Humanoid:LoadAnimation(Anim)
  84. Track:Play()
  85. end)
  86.  
  87. AddCmd("Golf", "Brings Golf Club", {},
  88. function(Args, Speaker)
  89. TP(CFrame.new(-75.571, 4.683, -220.446))
  90. wait(.5)
  91. TP(Pos)
  92. end)
  93.  
  94. AddCmd("Prefix", "Set prefix", {},
  95. function(Args, Speaker)
  96. if Args[1] == "nil" then
  97. Prefix = ""
  98. else
  99. Prefix = Args[1]
  100. end
  101. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement