Advertisement
Xseps_StarX

Beady 1m

Jan 19th, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.20 KB | None | 0 0
  1.  
  2.  
  3. --[[
  4.  
  5. getgenv().Settings = {
  6.     SellItem = true,
  7.     Food = true,
  8.     water = true,
  9.     cemen = true
  10. }
  11.  
  12.  
  13.  
  14. ]]
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. local plr = game:GetService("Players")
  23. local localplr = plr.LocalPlayer
  24. local char = localplr.Character
  25. local humaroot = char:WaitForChild("HumanoidRootPart")
  26. local playerGui = localplr:WaitForChild("PlayerGui")
  27. local GuiService = game:GetService("GuiService")
  28. local VirtualInputManager = game:GetService("VirtualInputManager")
  29. local EconomyGui = playerGui.Economy_Gui.Frame
  30. local Container = playerGui.Economy_Gui.Container
  31.  
  32. local PartSeller = Instance.new("Part")
  33. PartSeller.Name = "Seller Part"
  34. PartSeller.Parent = game.Workspace
  35. PartSeller.Anchored = true
  36. PartSeller.Transparency = .4
  37. PartSeller.Size = Vector3.new(20,0.5,20)
  38. PartSeller.CFrame = CFrame.new(776.553955078125, -10.882323741912842, -401.19720458984375)
  39.  
  40.  
  41. local Coconut = game:GetService("Players").LocalPlayer.ItemGame.Coconut
  42.  
  43. local function ClearList()
  44.     if EconomyGui and EconomyGui.Visible == true then
  45.         local Clearbutton = EconomyGui.Clear
  46.         if Clearbutton and Clearbutton:IsA("TextButton") then
  47.             GuiService.SelectedCoreObject = Clearbutton
  48.             wait(1)
  49.             VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  50.             VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  51.         end
  52.     end
  53. end
  54.  
  55. local function SellOil()
  56.     if EconomyGui and EconomyGui.Visible == true then
  57.         local selectitem = EconomyGui.Out_Frame.ScrollingFrame.Coconut.Seller
  58.         if selectitem and selectitem:IsA("TextButton") then
  59.             GuiService.SelectedCoreObject = selectitem
  60.             VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  61.             VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  62.             wait(.4)
  63.         end
  64.  
  65.         if Container and Container.Visible == true then
  66.             local max = Container.NumberBox.Max
  67.             if max and selectitem:IsA("TextButton") then
  68.                 GuiService.SelectedCoreObject = max
  69.                 VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  70.                 VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  71.                 wait(.4)
  72.             end
  73.         end
  74.  
  75.         if Container and Container.Visible == true then
  76.             local sellbutton = Container.Bottom.Ok
  77.             if sellbutton and sellbutton:IsA("TextButton") then
  78.                 GuiService.SelectedCoreObject = sellbutton
  79.                 VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game)
  80.                 VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game)
  81.                 wait(.2)
  82.             end
  83.         end
  84.     end
  85. end
  86.  
  87. function kik()
  88.     while task.wait(2) do
  89.         for i,v in pairs(game:GetService("Players"):GetDescendants()) do
  90.             if v.Name == "za0623247821" or v.Name == "sumetchaisiri" or v.Name == "Raidenny" or v.Name == "norlive" or v.Name == "NessyGray41" or v.Name == "j6rkes" or v.Name == "9abrile" or v.Name == "Jackiemilk01" then
  91.                 game:Shutdown()
  92.             end
  93.         end
  94.     end
  95. end
  96.  
  97.  
  98. task.spawn(function()
  99.  
  100.     _G.Cheack = false
  101.  
  102.     if getgenv().Settings['SellItem'] then
  103.         while wait(0.1) do
  104.  
  105.             if not _G.Cheack then
  106.                 _G.Cheack = false
  107.             end
  108.            
  109.             if Coconut.Value < 30 and not _G.Cheack then
  110.                 humaroot.CFrame = CFrame.new(-4774.71729, 3.99837804, 2224.49341, -0.530139804, 1.04783346e-08, -0.847910225, 3.99797244e-08, 1, -1.2638731e-08, 0.847910225, -4.05995131e-08, -0.530139804)
  111.                 wait(1)
  112.                 VirtualInputManager:SendKeyEvent(true, 101, false, humaroot)
  113.                 VirtualInputManager:SendKeyEvent(false, 101, false, humaroot)
  114.                 wait(1)
  115.                 _G.Cheack = true
  116.             end
  117.  
  118.             if Coconut and Coconut.Value == 30 then
  119.                 VirtualInputManager:SendKeyEvent(true, 101, false, humaroot)
  120.                 VirtualInputManager:SendKeyEvent(false, 101, false, humaroot)
  121.                 wait(10)
  122.                 EconomyGui.Visible = true
  123.                 humaroot.CFrame = CFrame.new(776.553955078125, -5.882323741912842, -401.19720458984375)
  124.                 wait(3)
  125.                 SellOil()
  126.                 wait(2)
  127.                 ClearList()
  128.                 wait(1)
  129.                 _G.Cheack = false
  130.                 wait(1)
  131.             end
  132.         end
  133.     else
  134.         _G.Cheack = false
  135.     end
  136. end)
  137.  
  138.  
  139.  
  140. --[[ Function Eat ]]
  141. task.spawn(function()
  142.     if getgenv().Settings['Food'] then
  143.         while wait(3) do
  144.             if game:GetService("Players").LocalPlayer.Status.Hunger.Value <= 20 then
  145.                 game:GetService("Lighting"):WaitForChild("Sky"):WaitForChild("Optimized"):FireServer("Hunger",40,"Loptor")
  146.             end
  147.         end
  148.     end
  149. end)
  150.  
  151. task.spawn(function()
  152.     if getgenv().Settings['water'] then
  153.         while wait(3) do
  154.             if game:GetService("Players").LocalPlayer.Status.Thirst.Value <= 20 then
  155.                 game:GetService("Lighting"):WaitForChild("Sky"):WaitForChild("Optimized"):FireServer("Thirst",50,"StrawberryJuice")
  156.             end
  157.         end
  158.     end
  159. end)
  160.  
  161.  
  162. --[[ Function Eat cemen ]]
  163. task.spawn(function()
  164.     if getgenv().Settings['cemen'] then
  165.         while wait(3) do
  166.             if game:GetService("Players").LocalPlayer.Status.Brain.Value <= 20 then
  167.                 game:GetService("Lighting"):WaitForChild("Sky"):WaitForChild("Optimized"):FireServer("Cement Powder","","")
  168.             end
  169.         end
  170.     end
  171. end)
  172.  
  173. spawn(function()
  174.     while task.wait(1.1) do
  175.         if game.Players.LocalPlayer.Character.Humanoid.Health < 70 then
  176.             game:Shutdown()
  177.         end
  178.     end
  179. end)
  180.  
  181. kik()
  182.  
  183.  
  184. print(_G.Cheack)
  185.  
  186.  
  187.  
  188.  
  189. ---------------------------------------------------------
  190.  
  191.  
  192.  
  193. ------------ จอขาว
  194.  
  195.  
  196. _G.WhiteScreen = false
  197. if _G.WhiteScreen == true then
  198.     game:GetService("RunService"):Set3dRenderingEnabled(false)
  199. elseif _G.WhiteScreen == false then
  200.     game:GetService("RunService"):Set3dRenderingEnabled(true)
  201. end
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement