Advertisement
Smartdumgood

Dandys World VoidWare

Dec 14th, 2024
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.01 KB | None | 0 0
  1. -- Load Void Ware
  2. loadstring(game:HttpGet('https://raw.githubusercontent.com/Erchobg/Voidware/main/installer.lua'))()('e')
  3.  
  4. local Players = game:GetService("Players")
  5. local RunService = game:GetService("RunService")
  6. local TweenService = game:GetService("TweenService")
  7. local LocalPlayer = Players.LocalPlayer
  8. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  9. local Root = Character:WaitForChild("HumanoidRootPart")
  10. local Humanoid = Character:WaitForChild("Humanoid")
  11.  
  12. -- GUI Creation
  13. local ScreenGui = Instance.new("ScreenGui")
  14. ScreenGui.Name = "DandysWorldGUI"
  15. if game:GetService("CoreGui"):FindFirstChild("DandysWorldGUI") then
  16. game:GetService("CoreGui"):FindFirstChild("DandysWorldGUI"):Destroy()
  17. end
  18. ScreenGui.Parent = game:GetService("CoreGui")
  19.  
  20. local MainFrame = Instance.new("Frame")
  21. MainFrame.Name = "MainFrame"
  22. MainFrame.Size = UDim2.new(0, 250, 0, 400)
  23. MainFrame.Position = UDim2.new(0.8, 0, 0.3, 0)
  24. MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  25. MainFrame.Active = true
  26. MainFrame.Draggable = true
  27. MainFrame.Parent = ScreenGui
  28.  
  29. local Title = Instance.new("TextLabel")
  30. Title.Text = "Dandy's World Hub"
  31. Title.Size = UDim2.new(1, 0, 0, 30)
  32. Title.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  33. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. Title.Font = Enum.Font.GothamBold
  35. Title.TextSize = 16
  36. Title.Parent = MainFrame
  37.  
  38. local ScrollFrame = Instance.new("ScrollingFrame")
  39. ScrollFrame.Size = UDim2.new(0.95, 0, 0.9, 0)
  40. ScrollFrame.Position = UDim2.new(0.025, 0, 0.1, 0)
  41. ScrollFrame.BackgroundTransparency = 1
  42. ScrollFrame.ScrollBarThickness = 4
  43. ScrollFrame.Parent = MainFrame
  44.  
  45. -- Features
  46. local features = {
  47. autoFarm = false,
  48. autoCollect = false,
  49. playerESP = false,
  50. itemESP = false,
  51. speedBoost = false,
  52. jumpBoost = false,
  53. infiniteJump = false,
  54. coinMagnet = false,
  55. autoDodge = false,
  56. antiVoid = false,
  57. autoWin = false,
  58. hitboxExpander = false,
  59. antiAFK = false
  60. }
  61.  
  62. -- Functions
  63. local function createButton(name, position)
  64. local button = Instance.new("TextButton")
  65. button.Size = UDim2.new(0.9, 0, 0, 30)
  66. button.Position = UDim2.new(0.05, 0, 0, position)
  67. button.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  68. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. button.Text = name
  70. button.Font = Enum.Font.Gotham
  71. button.TextSize = 14
  72. button.Parent = ScrollFrame
  73.  
  74. local corner = Instance.new("UICorner")
  75. corner.CornerRadius = UDim.new(0, 6)
  76. corner.Parent = button
  77.  
  78. return button
  79. end
  80.  
  81. local function notify(text)
  82. local notification = Instance.new("TextLabel")
  83. notification.Text = text
  84. notification.Size = UDim2.new(0, 200, 0, 40)
  85. notification.Position = UDim2.new(0.5, -100, 0, -40)
  86. notification.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  87. notification.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. notification.Font = Enum.Font.GothamBold
  89. notification.TextSize = 14
  90. notification.Parent = ScreenGui
  91.  
  92. local corner = Instance.new("UICorner")
  93. corner.CornerRadius = UDim.new(0, 6)
  94. corner.Parent = notification
  95.  
  96. TweenService:Create(notification, TweenInfo.new(0.5), {Position = UDim2.new(0.5, -100, 0, 20)}):Play()
  97. wait(2)
  98. TweenService:Create(notification, TweenInfo.new(0.5), {Position = UDim2.new(0.5, -100, 0, -40)}):Play()
  99. wait(0.5)
  100. notification:Destroy()
  101. end
  102.  
  103. -- Auto Farm Function
  104. local function startAutoFarm()
  105. spawn(function()
  106. while features.autoFarm do
  107. for _, coin in pairs(workspace:GetChildren()) do
  108. if coin.Name == "Coin" and Root then
  109. Root.CFrame = coin.CFrame
  110. wait(0.1)
  111. end
  112. end
  113. wait()
  114. end
  115. end)
  116. end
  117.  
  118. -- Auto Collect Function
  119. local function startAutoCollect()
  120. spawn(function()
  121. while features.autoCollect do
  122. for _, item in pairs(workspace:GetChildren()) do
  123. if item:IsA("Tool") then
  124. Root.CFrame = item.Handle.CFrame
  125. wait(0.1)
  126. end
  127. end
  128. wait()
  129. end
  130. end)
  131. end
  132.  
  133. -- Create Buttons
  134. local buttonList = {
  135. {name = "Auto Farm", feature = "autoFarm"},
  136. {name = "Auto Collect", feature = "autoCollect"},
  137. {name = "Player ESP", feature = "playerESP"},
  138. {name = "Item ESP", feature = "itemESP"},
  139. {name = "Speed Boost", feature = "speedBoost"},
  140. {name = "Jump Boost", feature = "jumpBoost"},
  141. {name = "Infinite Jump", feature = "infiniteJump"},
  142. {name = "Coin Magnet", feature = "coinMagnet"},
  143. {name = "Auto Dodge", feature = "autoDodge"},
  144. {name = "Anti Void", feature = "antiVoid"},
  145. {name = "Auto Win", feature = "autoWin"},
  146. {name = "Hitbox Expander", feature = "hitboxExpander"},
  147. {name = "Anti AFK", feature = "antiAFK"}
  148. }
  149.  
  150. for i, buttonInfo in ipairs(buttonList) do
  151. local button = createButton(buttonInfo.name, (i-1) * 35)
  152. button.MouseButton1Click:Connect(function()
  153. features[buttonInfo.feature] = not features[buttonInfo.feature]
  154. button.BackgroundColor3 = features[buttonInfo.feature] and Color3.fromRGB(0, 255, 0) or Color3.fromRGB(45, 45, 45)
  155.  
  156. if buttonInfo.feature == "autoFarm" then
  157. if features.autoFarm then
  158. startAutoFarm()
  159. notify("Auto Farm Enabled")
  160. else
  161. notify("Auto Farm Disabled")
  162. end
  163. elseif buttonInfo.feature == "autoCollect" then
  164. if features.autoCollect then
  165. startAutoCollect()
  166. notify("Auto Collect Enabled")
  167. else
  168. notify("Auto Collect Disabled")
  169. end
  170. elseif buttonInfo.feature == "speedBoost" then
  171. if features.speedBoost then
  172. Humanoid.WalkSpeed = 50
  173. notify("Speed Boost Enabled")
  174. else
  175. Humanoid.WalkSpeed = 16
  176. notify("Speed Boost Disabled")
  177. end
  178. elseif buttonInfo.feature == "jumpBoost" then
  179. if features.jumpBoost then
  180. Humanoid.JumpPower = 100
  181. notify("Jump Boost Enabled")
  182. else
  183. Humanoid.JumpPower = 50
  184. notify("Jump Boost Disabled")
  185. end
  186. end
  187. end)
  188. end
  189.  
  190. -- Main Loop
  191. RunService.Heartbeat:Connect(function()
  192. if features.antiVoid and Root.Position.Y < -10 then
  193. Root.CFrame = CFrame.new(Root.Position.X, 10, Root.Position.Z)
  194. end
  195. end)
  196.  
  197. -- Anti AFK
  198. if features.antiAFK then
  199. local VirtualUser = game:GetService("VirtualUser")
  200. LocalPlayer.Idled:Connect(function()
  201. VirtualUser:CaptureController()
  202. VirtualUser:ClickButton2(Vector2.new())
  203. end)
  204. end
  205.  
  206. -- Infinite Jump
  207. game:GetService("UserInputService").JumpRequest:Connect(function()
  208. if features.infiniteJump then
  209. Humanoid:ChangeState("Jumping")
  210. end
  211. end)
  212.  
  213. notify("Dandy's World Hub Loaded!")
  214.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement