Totalxterror

Munching Masters

Oct 22nd, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.68 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2.  
  3. local w = library:CreateWindow("Muching Masters") -- Creates the window
  4. local b = w:CreateFolder("Functions") -- Creates the folder(U will put here your buttons,etc)
  5. b:Toggle("AutoEat",function(bool)
  6.     shared.toggle = bool
  7. end)
  8.  
  9. spawn(function()
  10.     while wait() do
  11.         if shared.toggle then
  12.             game:GetService("ReplicatedStorage").Events.Player.Eat:FireServer()
  13.       end
  14.     end
  15. end)
  16.  
  17. b:Slider("Walkspeed",{
  18.     min = 16; -- min value of the slider
  19.     max = 100; -- max value of the slider
  20.     precise = true; -- max 2 decimals
  21. },function(value)
  22.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (value)
  23. end)
  24.  
  25. b:Toggle("Bring ObbyReward",function(bool1)
  26.     shared.toggle1 = bool1
  27. end)
  28.  
  29. spawn(function()
  30.     while wait() do
  31.         if shared.toggle1 then
  32.             game.Workspace.SELL:FindFirstChild("Giver").CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  33.       end
  34.     end
  35. end)
  36.  
  37. b:Toggle("Bring Sell Pad",function(bool2)
  38.     shared.toggle2 = bool2
  39. end)
  40.  
  41. spawn(function()
  42.     while wait() do
  43.         if shared.toggle2 then
  44.             game.Workspace.SELL:FindFirstChild("Pad").CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  45.       end
  46.     end
  47. end)
  48.  
  49. local b = w:CreateFolder("Credits") -- Creates the folder(U will put here your buttons,etc)
  50. b:Toggle("Scripts: Total",function(boolCred1)
  51.     shared.toggleCred1 = boolCred1
  52. end)
  53.  
  54. spawn(function()
  55.     while wait() do
  56.         if shared.toggleCred1 then
  57.             print("Nub")
  58.         end
  59.     end
  60. end)
Add Comment
Please, Sign In to add comment