Advertisement
Guest User

Horse Valley Roblox Op teleport script

a guest
Oct 26th, 2022
1,083
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local colors = {
  3. SchemeColor = Color3.fromRGB(100, 0, 255),
  4. Background = Color3.fromRGB(30, 30, 30),
  5. Header = Color3.fromRGB(30, 30, 30),
  6. TextColor = Color3.fromRGB(255, 255, 255),
  7. ElementColor = Color3.fromRGB(75, 75, 75)
  8. }
  9. local win = lib.CreateLib("Horse Valley", colors)
  10.  
  11. local tele = win:NewTab("Teleports")
  12. local player = win:NewTab("Fun")
  13. local items = win:NewTab("")
  14. local v = win:NewTab("")
  15.  
  16. local tp = tele:NewSection("Teleport")
  17. local plr = player:NewSection("Fun")
  18. local item = items:NewSection("")
  19. local vault = v:NewSection("")
  20.  
  21. local UIS = game:GetService'UserInputService'
  22. local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:wait()
  23.  
  24. plr:NewSlider("Speed", "Change your speed.", 500, 20, function(t)
  25. char.Humanoid.WalkSpeed = t
  26. end)
  27.  
  28. plr:NewButton("Infinite Yield", "Executes Infinite Yield", function()
  29. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  30. end)
  31.  
  32. tp:NewButton("Stall", "Teleport in the Stall.", function()
  33. char.HumanoidRootPart.CFrame = CFrame.new(60, 10, -1)
  34. end)
  35.  
  36. tp:NewButton("Pferd kaufen", "Teleport ontop the Sewer Pferd Kaufen.", function()
  37. char.HumanoidRootPart.CFrame = CFrame.new(200, 10, -200)
  38. end)
  39.  
  40. tp:NewButton("Hexen Haus", "Teleport to the Sewer Hexen Haus.", function()
  41. char.HumanoidRootPart.CFrame = CFrame.new(-1420, 70, -520)
  42. end)
  43.  
  44.  
  45. --made by Jakub_Galaxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement