RobloxCEO_215

defenders depot script

Nov 5th, 2024
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Script IEZVGD", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. local Tab = Window:MakeTab({ Name = "House", Icon = "", PremiumOnly = false })
  5.  
  6.  
  7. Tab:AddButton({ Name = "on AutoCrate", Callback = function()
  8. --[[
  9. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  10. ]]
  11. getgenv().settings = {
  12. ['AutoCrate'] = true
  13. }
  14.  
  15. local player = game:GetService("Players").LocalPlayer
  16. function collectCrates()
  17. for _,v in next, workspace:GetChildren() do
  18. if string.find(v.Name, 'Crate') and v.ClassName == 'MeshPart' then
  19. v.CanCollide = false
  20. v.CFrame = player.Character.PrimaryPart.CFrame
  21. end
  22. end
  23. end
  24.  
  25. while getgenv().settings.AutoCrate and task.wait() do
  26. collectCrates()
  27. end
  28. end })
  29.  
  30. Tab:AddButton({ Name = "off AutoCrate", Callback = function()
  31. --[[
  32. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  33. ]]
  34. getgenv().settings = {
  35. ['AutoCrate'] = false
  36. }
  37.  
  38. local player = game:GetService("Players").LocalPlayer
  39. function collectCrates()
  40. for _,v in next, workspace:GetChildren() do
  41. if string.find(v.Name, 'Crate') and v.ClassName == 'MeshPart' then
  42. v.CanCollide = false
  43. v.CFrame = player.Character.PrimaryPart.CFrame
  44. end
  45. end
  46. end
  47.  
  48. while getgenv().settings.AutoCrate and task.wait() do
  49. collectCrates()
  50. end
  51. end })
  52.  
  53.  
  54. Tab:AddToggle({
  55. Name = "start wave",
  56. Default = false,
  57. Callback = function(Value)
  58. _G.Hum = Value
  59. while _G.Hum do wait()
  60. local args = { [1] = "Start" }
  61. game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("StageController"):FireServer(unpack(args))
  62. end
  63. end
  64. })
  65.  
  66.  
  67.  
  68. OrionLib:lnit()
  69.  
Advertisement
Add Comment
Please, Sign In to add comment