Advertisement
kingmohamed

Festival Tycoon

Feb 10th, 2023
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
  2.  
  3. local Window = Library.CreateLib("Festival Tycoon", "DarkTheme")
  4.  
  5. local Tab = Window:NewTab("Money Stuff")
  6.  
  7. local Section = Tab:NewSection(“Main")
  8.  
  9. Section:NewTextBox("Give YourSelf Money", "What Ever You Put You Will Get", function(txt)
  10. game:GetService("ReplicatedStorage").RemoteObjects.DanceGameCash:FireServer(txt)
  11. end)
  12.  
  13. Section:NewToggle("AutoCollect", "AutoCollects", function(state)
  14. if state then
  15. _G.AutoCollect = true
  16. while _G.AutoCollect do
  17. game:GetService("ReplicatedStorage").RemoteObjects.CollectedMoney:FireServer()
  18. wait(0.1)
  19. end
  20.  
  21. else
  22. p_G.AutoCollect = false
  23. end
  24. end)
  25.  
  26. local Tab = Window:NewTab("Get Free Items")
  27.  
  28. local Section = Tab:NewSection("Get Free Items")
  29.  
  30.  
  31. Section:NewButton("Get Last 2 Items", "Free Shit", function()
  32. game:GetService("ReplicatedStorage").RemoteObjects.IncrementBeachCash:FireServer(11111111111111111111111111111111)
  33. game:GetService("ReplicatedStorage").RemoteObjects.ClaimMainStageChallenge:FireServer()
  34. end)
  35.  
  36. local Tab = Window:NewTab("LocalPlayer")
  37.  
  38. local Section = Tab:NewSection("Section Name")
  39.  
  40. Section:NewSlider("WalkSpeed", "ez", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  41. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  42. end)
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement