Advertisement
Geecgo

Untitled

Mar 10th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3. local Tab = Window:MakeTab({
  4. Name = "Main",
  5. Icon = "rbxassetid://4483345998",
  6. PremiumOnly = false
  7. })
  8. Tab:AddButton({
  9. Name = "Speed",
  10. Callback = function()
  11. local walkSpeed = 200
  12.  
  13.  
  14.  
  15. local gmt = getrawmetatable(game)
  16.  
  17. setreadonly(gmt, false)
  18.  
  19. local oldindex = gmt.__index
  20.  
  21. gmt.__index = newcclosure(function(self,b)
  22.  
  23. if b == "WalkSpeed" then
  24.  
  25. return 16
  26.  
  27. end
  28.  
  29. return oldindex(self,b)
  30.  
  31. end)
  32.  
  33.  
  34.  
  35. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  36. end
  37. })
  38.  
  39. Tab:AddColorpicker({
  40. Name = "Colorpicker",
  41. Default = Color3.fromRGB(255, 0, 0),
  42. Callback = function(Value)
  43. print(Value)
  44. end
  45. })
  46.  
  47. Tab:AddBind({
  48. Name = "Bind Sprint Super speed",
  49. Default = Enum.KeyCode.E,
  50. Hold = false,
  51. Callback = function()
  52. local walkSpeed = 1000
  53.  
  54.  
  55.  
  56. local gmt = getrawmetatable(game)
  57.  
  58. setreadonly(gmt, false)
  59.  
  60. local oldindex = gmt.__index
  61.  
  62. gmt.__index = newcclosure(function(self,b)
  63.  
  64. if b == "WalkSpeed" then
  65.  
  66. return 16
  67.  
  68. end
  69.  
  70. return oldindex(self,b)
  71.  
  72. end)
  73.  
  74.  
  75.  
  76. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  77. end
  78. })
  79.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement