JacobRoblox

Untitled

Jan 11th, 2020
2,677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. -- Esp Script
  2. loadstring(game:HttpGet("http://scriptstream.xyz/ScriptStorage/ESPForArsenal.lua", true))()
  3.  
  4.  
  5. -- Auto Gun
  6. local LocalPlayer = game.Players.LocalPlayer
  7. local Mouse = LocalPlayer:GetMouse()
  8. Mouse.KeyDown:connect(function(KeyPressed)
  9. if KeyPressed == "x" then
  10. local props = game:GetService("Workspace").Debris.Props:GetDescendants() -- Grab everything in Folder.
  11. for i = 1, #props do -- Loop through everything to find what we need.
  12. local prop = props[i]
  13. if prop.Name == "Green" then -- GUI we are looking for.
  14. local PlayerCFrame = LocalPlayer.Character.HumanoidRootPart.CFrame
  15. if prop.Parent.Orientation.Y > -3162 then -- Bellow map check..
  16. LocalPlayer.Character.HumanoidRootPart.CFrame = prop.Parent.CFrame + Vector3.new(0, 3, 0) -- Teleport Player to Prop (Their new check forces you to be near it to pick it up..)
  17. wait(0.5) -- Wait for us to teleport.
  18. game:GetService("ReplicatedStorage").Events.Loot:FireServer(prop.Parent) -- Parent of Green
  19. end
  20. end
  21. end
  22. end
  23. end)
Add Comment
Please, Sign In to add comment