Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2.  
  3. a = Instance.new("Part", workspace)
  4. a.Anchored = true
  5. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6. a.CanCollide = false
  7.  
  8. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  9. if v.Name == "Station" then
  10. for a, b in pairs(v:GetChildren()) do
  11. if b:IsA("StringValue") then
  12. if b.Value == "Pistol" then
  13. v.CFrame = CFrame.new(hit)
  14. end
  15. end
  16. end
  17. end
  18. end
  19.  
  20. -- UZI GET SCRIPT
  21.  
  22.  
  23.  
  24. local Lc=game:GetService("VirtualInputManager")
  25. game:GetService('Workspace').GunShop.Uzi.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-3.4,0)
  26. wait(0.15)
  27. Lc:SendKeyEvent(true,"E",false,game)
  28. Lc:SendKeyEvent(false,"E",false,game)
  29. wait(0.15)
  30. game:GetService('Workspace').GunShop.Uzi.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-10,0)
  31. wait(0.05)
  32.  
  33. -- ROCKET LAUNCHER GET SCRIPT
  34.  
  35.  
  36. local Lb=game:GetService("VirtualInputManager")
  37. game:GetService('Workspace').GunShop.RocketLauncher.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-3.4,0)
  38. wait(0.15)
  39. Lb:SendKeyEvent(true,"E",false,game)
  40. Lb:SendKeyEvent(false,"E",false,game)
  41. wait(0.15)
  42. game:GetService('Workspace').GunShop.RocketLauncher.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-10,0)
  43. wait(0.05)
  44.  
  45.  
  46. -- SHOTGUN GET SCRIPT
  47.  
  48.  
  49. local La=game:GetService("VirtualInputManager")
  50. game:GetService('Workspace').GunShop.Shotgun.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-3.4,0)
  51. wait(0.15)
  52. La:SendKeyEvent(true,"E",false,game)
  53. La:SendKeyEvent(false,"E",false,game)
  54. wait(0.15)
  55. game:GetService('Workspace').GunShop.Shotgun.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-10,0)
  56. wait(0.05)
  57.  
  58.  
  59. -- AK 47 GET SCRIPT
  60.  
  61. local L=game:GetService("VirtualInputManager")
  62. game:GetService('Workspace').GunShop.AK47.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-3.4,0)
  63. wait(0.15)
  64. L:SendKeyEvent(true,"E",false,game)
  65. L:SendKeyEvent(false,"E",false,game)
  66. wait(0.15)
  67. game:GetService('Workspace').GunShop.AK47.BoundingBox.Position = game:GetService('Players').LocalPlayer.Character.Head.Position+Vector3.new(0,-10,0)
  68. wait(0.05)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement