Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local colors = {
- SchemeColor = Color3.fromRGB(100, 0, 255),
- Background = Color3.fromRGB(30, 30, 30),
- Header = Color3.fromRGB(30, 30, 30),
- TextColor = Color3.fromRGB(255, 255, 255),
- ElementColor = Color3.fromRGB(75, 75, 75)
- }
- local win = lib.CreateLib("Horse Valley", colors)
- local tele = win:NewTab("Teleports")
- local player = win:NewTab("Fun")
- local items = win:NewTab("")
- local v = win:NewTab("")
- local tp = tele:NewSection("Teleport")
- local plr = player:NewSection("Fun")
- local item = items:NewSection("")
- local vault = v:NewSection("")
- local UIS = game:GetService'UserInputService'
- local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:wait()
- plr:NewSlider("Speed", "Change your speed.", 500, 20, function(t)
- char.Humanoid.WalkSpeed = t
- end)
- plr:NewButton("Infinite Yield", "Executes Infinite Yield", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- tp:NewButton("Stall", "Teleport in the Stall.", function()
- char.HumanoidRootPart.CFrame = CFrame.new(60, 10, -1)
- end)
- tp:NewButton("Pferd kaufen", "Teleport ontop the Sewer Pferd Kaufen.", function()
- char.HumanoidRootPart.CFrame = CFrame.new(200, 10, -200)
- end)
- tp:NewButton("Hexen Haus", "Teleport to the Sewer Hexen Haus.", function()
- char.HumanoidRootPart.CFrame = CFrame.new(-1420, 70, -520)
- end)
- --made by Jakub_Galaxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement