Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getHash()
- for _, v in pairs(game:GetService("Workspace").PlayerTycoons:GetDescendants()) do
- if v:IsA("ObjectValue") and v.Name == "Owner" then
- if tostring(v.Value) == game.Players.LocalPlayer.Name then
- return (v.Parent.Parent.Name)
- end
- end
- end
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
- local Window = Library.CreateLib("Military Tycoon", "DarkTheme")
- -- MAIN
- local Main = Window:NewTab("Main")
- local Section = Main:NewSection("Main")
- Section:NewToggle("Cash Farm", "Make your player auto click", function(val)
- getgenv().cashtog = val
- end)
- Section:NewToggle("Auto-Buy", "Make your player auto click", function(val)
- getgenv().farmtog = val
- end)
- Section:NewButton("Die", "Make your player auto click", function()
- pcall(function()
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- end)
- end)
- Section:NewSlider("Jump", "SliderInfo", 500, 0, function(val) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = val
- end)
- Section:NewSlider("Speed", "SliderInfo", 500, 0, function(val) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = val
- end)
- Section:NewButton("Noclip gui", "Make your player auto click", function()
- -- Script:
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Mirgarr/noclip-script-roblox/main/Noclip"))();
- -- Enjoy!
- end)
- task.spawn(
- function()
- while task.wait(1) do
- if getgenv().cashtog then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").PlayerTycoons[tostring(getHash())].Essentials.Giver.CollectButton.CFrame * CFrame.new(0,3,0)
- end
- end
- end
- )
- task.spawn(
- function()
- while task.wait(.5) do
- if getgenv().farmtog then
- for _, v in pairs(
- (game:GetService("Workspace")).PlayerTycoons[tostring(getHash())].Buttons:GetDescendants()
- ) do
- if v:IsA("TextLabel") and string.find(v.Text, "$") then
- if tostring(v.Parent.Parent.BrickColor) == "Lime green" and getgenv().farmtog then
- getgenv().tog = true
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.Parent.CFrame
- task.wait(1)
- getgenv().tog = false
- end
- end
- end
- end
- end
- end
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement