Advertisement
dgfg7yuijygy

Untitled

Apr 23rd, 2023 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "kumfy Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5.  
  6. local Tab = Window:MakeTab({
  7. Name = "Popular",
  8. Icon = "rbxassetid://4483345998",
  9. PremiumOnly = false
  10. })
  11.  
  12. local Section = Tab:AddSection({
  13. Name = "Popular"
  14. })
  15.  
  16. Tab:AddButton({
  17. Name = "Walk Speed",
  18. Callback = function()
  19. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  20. end
  21. })
  22.  
  23. Tab:AddButton({
  24. Name = "Jump Power",
  25. Callback = function()
  26. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  27. end
  28. })
  29.  
  30. Tab:AddButton({
  31. Name = "God Mode",
  32. Callback = function()
  33. Workspace[""..game.Players.LocalPlayer.Name].KillScript:Destroy()
  34. end
  35. })
  36.  
  37.  
  38.  
  39. local Tab = Window:MakeTab({
  40. Name = "Player",
  41. Icon = "rbxassetid://4483345998",
  42. PremiumOnly = false
  43. })
  44.  
  45. local Section = Tab:AddSection({
  46. Name = "Player"
  47. })
  48.  
  49. Tab:AddButton({
  50. Name = "God Mode",
  51. Callback = function()
  52. Workspace[""..game.Players.LocalPlayer.Name].KillScript:Destroy()
  53. end
  54. })
  55.  
  56. Tab:AddButton({
  57. Name = "Jump Power",
  58. Callback = function()
  59. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  60. end
  61. })
  62.  
  63. Tab:AddButton({
  64. Name = "Walk Speed",
  65. Callback = function()
  66. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  67. end
  68. })
  69.  
  70.  
  71. Tab:AddButton({
  72. Name = "Made by kumfy",
  73. Callback = function()
  74. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 10000
  75. end
  76. })
  77.  
  78.  
  79.  
  80.  
  81. OrionLib:MakeNotification({
  82. Name = "kumfys hub",
  83. Content = "Notification content... what will it say??",
  84. Image = "rbxassetid://4483345998",
  85. Time = 5
  86. })
  87.  
  88. OrionLib:Init()
Tags: Script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement