0% found this document useful (0 votes)
613 views2 pages

Tycoon Script v1 Added in Khub v8

The document is a Lua script for a Roblox game that allows players to customize their character's movement and abilities. It includes features such as adjusting walk speed, enabling infinite jump, and resetting jump power. Additionally, it offers tools like teleportation and noclip functionalities through external scripts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
613 views2 pages

Tycoon Script v1 Added in Khub v8

The document is a Lua script for a Roblox game that allows players to customize their character's movement and abilities. It includes features such as adjusting walk speed, enabling infinite jump, and resetting jump power. Additionally, it offers tools like teleportation and noclip functionalities through external scripts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

local Library = loadstring(game:HttpGet("https://pastebin.

com/raw/vff1bQ9F"))()
local Window = Library.CreateLib("Tycoon script v1", "BloodTheme")

--New Tab

local Tab = Window:NewTab("Local")


local Section = Tab:NewSection("Local")

Section:NewSlider("Walkspeed", "SliderInfo", 1000, 0, function(s) -- 1000


(MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)

Section:NewToggle("Infinite Jump", "By toggling this you can jump infinitely.",


function(state) ---put your script to enabled true
if state then
---should be the same script
local InfiniteJumpEnabled = true
game:GetService("UserInputService").JumpRequest:connect(function()
if InfiniteJumpEnabled then

game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':Chan
geState("Jumping")
end
end)
print("Infinite Jump: ON")
else
InfiniteJumpEnabled = false
---Put your script disabled false
game:GetService("UserInputService").JumpRequest:connect(function()
if InfiniteJumpEnabled then

game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':Chan
geState("Jumping")
end
end)
print("Infinite Jump: OFF")
end
end)

Section:NewTextBox("Set WalkSpeed", "Info", function(txt)


game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = txt
end)

Section:NewTextBox("Set JumpPower", "Info", function(txt)


game.Players.LocalPlayer.Character.Humanoid.JumpPower = txt
end)

Section:NewButton("Reset Walkspeed", "ButtonInfo", function()


game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
end)

Section:NewButton("Reset Jumpower", "ButtonInfo", function()


game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
end)

local Tab = Window:NewTab("Tools")


local Section = Tab:NewSection("Tools")
Section:NewButton("TP tool", "ButtonInfo", function()
loadstring(game:HttpGet("https://pastefy.app/IpjIW7ZH/raw"))()
end)

Section:NewButton("Noclip Gui", "ButtonInfo", function()


loadstring(game:HttpGet("https://pastebin.com/raw/B5xRxTnk",true))()
end)

Section:NewButton("Hitbox", "ButtonInfo", function()


loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-
Update-script-hitbox-9326"))()
end)

You might also like