SekkayGod

eat da world

Apr 15th, 2024 (edited)
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.08 KB | None | 0 0
  1. --[[
  2. its fully open source and no im not sorry for my trash luau skills
  3. also for people this was made by Skire (x6x_0)
  4.  
  5. .d88888b. d8b 888
  6. d88P" "Y88b Y8P 888
  7. 888 888 888
  8. 888 888 888 888 888 888 888 .d88b. 888
  9. 888 888 888 888 `Y8bd8P' 888 d8P Y8b 888
  10. 888 888 888 888 X88K 888 88888888 Y8P
  11. Y88b. .d88P Y88b 888 .d8""8b. 888 Y8b. "
  12. "Y88888P" "Y88888 888 888 888 "Y8888 888
  13.  
  14.  
  15. 888b d888 888 888888b.
  16. 8888b d8888 888 888 "88b
  17. 88888b.d88888 888 888 .88P
  18. 888Y88888P888 8888b. .d88888 .d88b. 8888888K. 888 888 d8b
  19. 888 Y888P 888 "88b d88" 888 d8P Y8b 888 "Y88b 888 888 Y8P
  20. 888 Y8P 888 .d888888 888 888 88888888 888 888 888 888
  21. 888 " 888 888 888 Y88b 888 Y8b. 888 d88P Y88b 888 d8b
  22. 888 888 "Y888888 "Y88888 "Y8888 8888888P" "Y88888 Y8P
  23. 888
  24. Y8b d88P
  25. "Y88P"
  26.  
  27. .d8888b. 888 d8b
  28. d88P Y88b 888 Y8P
  29. Y88b. 888
  30. "Y888b. 888 888 888 888d888 .d88b.
  31. "Y88b. 888 .88P 888 888P" d8P Y8b
  32. "888 888888K 888 888 88888888 888888
  33. Y88b d88P 888 "88b 888 888 Y8b.
  34. "Y8888P" 888 888 888 888 "Y8888
  35.  
  36.  
  37.  
  38. .d88 .d8888b. .d8888b. 88b. 888
  39. d88P" d88P Y88b d88P Y88b "Y88b 888
  40. d88P 888 888 888 Y88b 888
  41. 888 888 888 888d888b. 888 888 888 888 888 888
  42. 888 `Y8bd8P' 888P "Y88b `Y8bd8P' 888 888 888 888
  43. Y88b X88K 888 888 X88K 888 888 d88P Y8P
  44. Y88b. .d8""8b. Y88b d88P .d8""8b. Y88b d88P .d88P "
  45. "Y88 888 888 "Y8888P" 888 888 88888888 "Y8888P" 88P" 888
  46.  
  47.  
  48. ]]
  49.  
  50. local Players = game:GetService("Players")
  51. local player = Players.LocalPlayer
  52.  
  53. getgenv().auto_grab = false
  54. getgenv().auto_eat = false
  55. getgenv().auto_egg = false
  56. getgenv().auto_cube = false
  57. getgenv().no_stun = false
  58. getgenv().auto_sell = false
  59. getgenv().amount = 100
  60. getgenv().spin = false
  61. getgenv().speed = 2
  62.  
  63. local function getRoot(char)
  64. local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
  65. return rootPart
  66. end
  67.  
  68. local function sell()
  69. repeat
  70. local size = player.leaderstats.Size
  71. game:GetService("Players").LocalPlayer.Character.Events.Sell:FireServer()
  72. getgenv().auto_eat = true
  73. getgenv().auto_grab = true
  74. wait()
  75. until size.Value <= 10
  76. getgenv().auto_eat = true
  77. getgenv().auto_grab = true
  78. return true
  79. end
  80.  
  81. local function spin(speed, bool)
  82. if bool then
  83. local spinSpeed = 2
  84. if speed then
  85. spinSpeed = speed
  86. end
  87. for i,v in pairs(getRoot(player.Character):GetChildren()) do
  88. if v.Name == "Spinning" then
  89. v:Destroy()
  90. end
  91. end
  92. local Spin = Instance.new("BodyAngularVelocity")
  93. Spin.Name = "Spinning"
  94. Spin.Parent = getRoot(player.Character)
  95. Spin.MaxTorque = Vector3.new(0, math.huge, 0)
  96. Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
  97. else
  98. for i,v in pairs(getRoot(player.Character):GetChildren()) do
  99. if v.Name == "Spinning" then
  100. v:Destroy()
  101. end
  102. end
  103. end
  104. getgenv().spin = bool
  105. end
  106.  
  107. local function auto(option, bool)
  108. if option == "eat" then
  109. getgenv().auto_eat = bool
  110. while auto_eat do
  111. game:GetService("Players").LocalPlayer.Character.Events.Eat:FireServer()
  112. wait(.1)
  113. end
  114. elseif option == "grab" then
  115. getgenv().auto_grab = bool
  116. while auto_grab do
  117. local path = player.PlayerGui.ScreenGui.MapCountdown.Clock
  118. if path.Text == "0:00" or path.text == "0:01" then wait(10) else
  119. local args = {
  120. [1] = false,
  121. [2] = false
  122. }
  123. game:GetService("Players").LocalPlayer.Character.Events.Grab:FireServer(unpack(args))
  124. end
  125. wait(.1)
  126. end
  127. elseif option == "cube" then
  128. getgenv().auto_cube = bool
  129. while auto_cube do
  130. for i,v in pairs(game.Workspace:GetChildren()) do
  131. if v.Name == "Cube" or v.Name == "cube" then
  132. if v.Owner.Value == player.Name or v.Owner.Value == player.DisplayName then
  133. v.CFrame = player.Character.HumanoidRootPart.CFrame
  134. end
  135. end
  136. end
  137. wait(.1)
  138. end
  139. elseif option == "egg" then
  140. getgenv().auto_egg = bool
  141. while auto_egg do
  142. for i,v in pairs(game.Workspace.Eggs:GetChildren()) do
  143. if v.Parent == game.Workspace.Eggs then
  144. if v.Owner.Value == player.Name or v.Owner.Value == player.DisplayName or v.Owner.Value == "" then
  145. v.CFrame = player.Character.HumanoidRootPart.CFrame
  146. end
  147. end
  148. end
  149. wait(.1)
  150. end
  151. elseif option == "stun" then
  152. getgenv().no_stun = bool
  153. while no_stun do
  154. local args = {
  155. [1] = player.Character
  156. }
  157. game:GetService("ReplicatedStorage").Events.unRagdoll:FireServer(unpack(args))
  158. wait(.1)
  159. end
  160. elseif option == "sell" then
  161. getgenv().auto_sell = bool
  162. while auto_sell do
  163. local size = player.leaderstats.Size
  164. if size.Value >= tonumber(getgenv().amount) then
  165. getgenv().auto_eat = false
  166. getgenv().auto_grab = false
  167. local se = sell()
  168. if se == true then
  169. getgenv().auto_eat = true
  170. getgenv().auto_grab = true
  171. else
  172. getgenv().auto_eat = true
  173. getgenv().auto_grab = true
  174. end
  175. wait(0.1)
  176. end
  177. wait(.1)
  178. end
  179. end
  180. end
  181.  
  182. --loadstring(game:HttpGet("https://pastebin.com/raw/EgEmi8i3"))() -- dont mind
  183. local ui = loadstring(game:HttpGet("https://pastebin.com/raw/3xXCHAQD"))()
  184. ui:Window("Ouxie / Eat The World")
  185.  
  186. local home = ui:NewTab("Main", "0")
  187. local misc = ui:NewTab("Misc", "0")
  188. local sell = ui:NewTab("Auto Sell", "0")
  189.  
  190.  
  191. sell:Input("Amount", "Auto Sell Amount.", function()
  192. getgenv().amount = tonumber(value)
  193. end)
  194.  
  195. sell:Toggle("Auto Sell", "Auto Sells once reached the set amount.", function()
  196. auto("sell", bool)
  197. end)
  198.  
  199.  
  200. misc:Toggle("Auto Cubes", "Auto grabs the cubes.", function()
  201. auto("cube", bool)
  202. end)
  203.  
  204. misc:Toggle("Auto Eggs", "Auto grabs the eggs.", function()
  205. auto("egg", bool)
  206. end)
  207.  
  208. misc:Toggle("Auto unragdoll", "Auto Unragdolls off the floor.", function()
  209. auto("stun", bool)
  210. end)
  211.  
  212. misc:Button("Anti Afk", "Wont get kicked for afk (20 mins).", function()
  213. local GC = getconnections or get_signal_cons
  214. if GC then
  215. for i,v in pairs(GC(Players.LocalPlayer.Idled)) do
  216. if v["Disable"] then
  217. v["Disable"](v)
  218. elseif v["Disconnect"] then
  219. v["Disconnect"](v)
  220. end
  221. end
  222. else
  223. Players.LocalPlayer.Idled:Connect(function()
  224. local VirtualUser = game:GetService("VirtualUser")
  225. VirtualUser:CaptureController()
  226. VirtualUser:ClickButton2(Vector2.new())
  227. end)
  228. end
  229. end)
  230.  
  231. home:Toggle("Auto Grab", "Auto grabs the floor?", function()
  232. auto("grab", bool)
  233. end)
  234.  
  235. home:Toggle("Auto Eat", "Auto Eats the floor?", function()
  236. auto("eat", bool)
  237. end)
  238.  
  239. home:Input("Spin Speed", "Spin speed.", function()
  240. getgenv().speed = tonumber(value)
  241. end)
  242.  
  243. home:Toggle("Spin", "Spins.", function()
  244. spin(tonumber(getgenv().speed), bool)
  245. end)
Add Comment
Please, Sign In to add comment