Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
- local Window = Library.CreateLib("Festival Tycoon", "DarkTheme")
- local Tab = Window:NewTab("Money Stuff")
- local Section = Tab:NewSection(“Main")
- Section:NewTextBox("Give YourSelf Money", "What Ever You Put You Will Get", function(txt)
- game:GetService("ReplicatedStorage").RemoteObjects.DanceGameCash:FireServer(txt)
- end)
- Section:NewToggle("AutoCollect", "AutoCollects", function(state)
- if state then
- _G.AutoCollect = true
- while _G.AutoCollect do
- game:GetService("ReplicatedStorage").RemoteObjects.CollectedMoney:FireServer()
- wait(0.1)
- end
- else
- p_G.AutoCollect = false
- end
- end)
- local Tab = Window:NewTab("Get Free Items")
- local Section = Tab:NewSection("Get Free Items")
- Section:NewButton("Get Last 2 Items", "Free Shit", function()
- game:GetService("ReplicatedStorage").RemoteObjects.IncrementBeachCash:FireServer(11111111111111111111111111111111)
- game:GetService("ReplicatedStorage").RemoteObjects.ClaimMainStageChallenge:FireServer()
- end)
- local Tab = Window:NewTab("LocalPlayer")
- local Section = Tab:NewSection("Section Name")
- Section:NewSlider("WalkSpeed", "ez", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement