Advertisement
Roblox_Script1234

Strange Things

Sep 2nd, 2021
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. getgenv().autoCoin = true
  2.  
  3. repeat wait() until game:IsLoaded()
  4.  
  5. game:GetService("Players").LocalPlayer.Idled:connect(function()
  6.  
  7. game:GetService("VirtualUser"):ClickButton2(Vector2.new())
  8.  
  9. end)
  10.  
  11. game:GetService("Players").LocalPlayer.PlayerGui.ShootingGalleryGui:Destroy()
  12.  
  13. while autoCoin == true do
  14.  
  15. wait(1)
  16.  
  17. game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.RequestGalleryStart:FireServer()
  18.  
  19. wait(0.1)
  20.  
  21. local A_1 =
  22.  
  23. {
  24. ["TargetName"] = "Demogorgon",
  25. ["score"] = math.huge,
  26. ["position"] = Vector3.new()
  27. }
  28.  
  29. local Event = game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.Statistics.TargetHit
  30.  
  31. Event:FireServer(A_1)
  32.  
  33. wait(0.1)
  34.  
  35. local args = {[1] = true}
  36.  
  37. game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.FinalBeatCleared:FireServer(unpack(args))
  38.  
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement