Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Tower Of Jump", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --Tabs
- local RedWoodTab = Window:MakeTab({
- Name = "Teleport",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local UniversalTab = Window:MakeTab({
- Name = "Player",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Buttons
- RedWoodTab:AddButton({
- Name = "Teleport To The Top",
- Callback = function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.7096672, 219.231033, 141.980164, -0.99984777, 6.68668121e-10, -0.0174477585, 2.91435986e-09, 1, -1.2868405e-07, 0.0174477585, -1.287153e-07, -0.99984777)
- print("button pressed")
- end
- })
- UniversalTab:AddSlider({
- Name = "Walkspeed",
- Min = 16,
- Max = 500,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "WS",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- UniversalTab:AddSlider({
- Name = "Jump Height",
- Min = 16,
- Max = 500,
- Default = 5,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Height",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- UniversalTab:AddButton({
- Name = "Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- print("button pressed")
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment