Advertisement
The_One123

adawdwads

Jun 24th, 2021
3,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.82 KB | None | 0 0
  1. --coin autofarm
  2. getgenv().autoCoin = true
  3.  
  4. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Idled)) do
  5.  
  6. v:Disable()
  7.  
  8. end
  9.  
  10. game:GetService("Players").LocalPlayer.PlayerGui.ShootingGalleryGui:Destroy()
  11.  
  12. while autoCoin == true do
  13. wait(0.5)
  14.  
  15. game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.RequestGalleryStart:FireServer()
  16.  
  17. wait(0.1)
  18.  
  19. local A_1 =
  20.  
  21. {
  22. ["TargetName"] = "Demogorgon",
  23. ["score"] = math.huge,
  24. ["position"] = Vector3.new()
  25. }
  26.  
  27. local Event = game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.Statistics.TargetHit
  28.  
  29. Event:FireServer(A_1)
  30.  
  31. wait(0.1)
  32.  
  33. local args = {[1] = true}
  34.  
  35. game:GetService("ReplicatedStorage").ShootingGallery.RemoteEvents.FinalBeatCleared:FireServer(unpack(args))
  36.  
  37. end
  38.  
  39.  
  40. --Purchase all costumes and gears from store, courtesy to DekuDimz
  41.  
  42.  
  43. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("hawkings_backpack",false)
  44. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("sc_badge",false)
  45. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("vest",false)
  46. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("headgear",false)
  47. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("robin_costume",false)
  48. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("eleven_costume",false)
  49. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("demogorgon_costume",false)
  50. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("hazmat_costume",false)
  51. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("steven_costume",false)
  52. game:GetService("ReplicatedStorage").Store.Remote.PurchaseRequest:FireServer("will_costume",false)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement