Menace00

Roblox Natural Disaster script Orion Hub

Jul 6th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. -- GUI of CigarHub --
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3. local Window = OrionLib:MakeWindow({Name = "CigarHub | Natural Disaster Survival", HidePremium = false, SaveConfig = true, ConfigFolder = "CigarFold"})
  4. -- Notification --
  5.  
  6.  
  7. OrionLib:MakeNotification({
  8. Name = "Welcome!",
  9. Content = "Welcome to CigarHub, full of exploits",
  10. Image = "rbxassetid://4483345998",
  11. Time = 3.6
  12. })
  13.  
  14.  
  15. OrionLib:MakeNotification({
  16. Name = "Scripts (That are not Shown)",
  17. Content = "No Fall Damage, AntiBlur, AntiKick, ETC...",
  18. Image = "rbxassetid://4483345998",
  19. Time = 4.3
  20. })
  21.  
  22.  
  23. -- Values --
  24. _G.Gravity = true
  25. _G.Speed = true
  26. _G.Jump = true
  27. _G.AutoFarm = true
  28.  
  29. -- Functions --
  30. function Gravity()
  31. while _G.Gravity == true do
  32. Wait(0.5)
  33. game.Workspace.Gravity = 60
  34. end
  35. end
  36.  
  37. function Speed()
  38. while _G.Speed == true do
  39. Wait(0.5)
  40. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60
  41. end
  42. end
  43.  
  44. function Jump()
  45. while _G.Jump == true do
  46. Wait(0.5)
  47. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 80
  48. end
  49. end
  50.  
  51. function AutoFarm()
  52. while _G.AutoFarm == true do
  53. Wait(1)
  54. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-295,180,336))
  55. end
  56. end
  57. -- Tab --
  58. local Main = Window:MakeTab({
  59. Name = "Main",
  60. Icon = "rbxassetid://4483345998",
  61. PremiumOnly = false
  62. })
  63.  
  64. -- Toggle --
  65. Main:AddToggle({
  66. Name = "AutoFarm",
  67. Default = false,
  68. Callback = function(Value)
  69. _G.AutoFarm = Value
  70. AutoFarm()
  71. end
  72. })
  73.  
  74. -- Tab --
  75. local Character = Window:MakeTab({
  76. Name = "Character",
  77. Icon = "rbxassetid://4483345998",
  78. PremiumOnly = false
  79. })
  80.  
  81. -- Toggle --
  82. Character:AddToggle({
  83. Name = "Gravity",
  84. Default = false,
  85. Callback = function(Value)
  86. _G.Gravity = Value
  87. Gravity()
  88. end
  89. })
  90.  
  91. -- Toggle --
  92. Character:AddToggle({
  93. Name = "Speed",
  94. Default = false,
  95. Callback = function(Value)
  96. _G.Speed = Value
  97. Speed()
  98. end
  99. })
  100.  
  101. -- Toggle --
  102. Character:AddToggle({
  103. Name = "Jump Power",
  104. Default = false,
  105. Callback = function(Value)
  106. _G.Jump = Value
  107. Jump()
  108. end
  109. })
  110.  
  111.  
  112.  
  113. -- Scripts that are not shown --
  114. game.Players.LocalPlayer.Character.FallDamageScript:Destroy()
  115.  
  116. -- End of Script --
  117. OrionLib:Init()
Add Comment
Please, Sign In to add comment