Geecgo

Untitled

Jul 24th, 2023 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.80 KB | None | 0 0
  1.  
  2. local OrionLib = loadstring(game:HttpGet(("https://raw.githubusercontent.com/shlexware/Orion/main/source")))()
  3. local Window = OrionLib:MakeWindow({Name = "Only up blox", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4. local Tab = Window:MakeTab({
  5. Name = "Player",
  6. Icon = "rbxassetid://4483345998",
  7. PremiumOnly = false
  8. })
  9. OrionLib:MakeNotification({
  10. Name = "(ONLY UP BLOX) ",
  11. Content = "WARNING PLEASE CLICK ON ANTI-CHEAT BYPASS BEFORE USING ADMIN.",
  12. Image = "rbxassetid://4483345998",
  13. Time = 5
  14. })
  15.  
  16. Tab:AddSlider({
  17. Name = "Walkspeed (FIXED)",
  18. Min = 16,
  19. Max = 500,
  20. Default = 16,
  21. Color = Color3.fromRGB(255,255,255),
  22. Increment = 1,
  23. ValueName = "WS",
  24. Callback = function(Value)
  25. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  26. end
  27. })
  28. Tab:AddSlider({
  29. Name = "Jump Height (FIXED)",
  30. Min = 16,
  31. Max = 500,
  32. Default = 5,
  33. Color = Color3.fromRGB(255,255,255),
  34. Increment = 1,
  35. ValueName = "Height",
  36. Callback = function(Value)
  37. game.Players.LocalPlayer.Character.Humanoid.UseJumpPower = true
  38. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  39. end
  40. })
  41.  
  42. Tab:AddBind({
  43. Name = "Speed Boost (Press ctrl to disable)",
  44. Default = Enum.KeyCode.E,
  45. Hold = true,
  46. Callback = function()
  47. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 36
  48. end
  49. })
  50. Tab:AddBind({
  51. Name = "Inf jump (kinda buggy)",
  52. Default = Enum.KeyCode.Q,
  53. Hold = true,
  54. Callback = function()
  55. -- Gui to Lua
  56. -- Version: 3.2
  57.  
  58. -- Instances:
  59.  
  60. local ScreenGui = Instance.new("ScreenGui")
  61. local main = Instance.new("Frame")
  62. local TextLabel = Instance.new("TextLabel")
  63. local Frame = Instance.new("Frame")
  64. local INFJUMP = Instance.new("TextButton")
  65. local TextLabel_2 = Instance.new("TextLabel")
  66.  
  67. --Properties:
  68.  
  69. ScreenGui.Parent = game.CoreGui
  70.  
  71. main.Name = "main"
  72. main.Parent = ScreenGui
  73. main.Active = true
  74. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. main.BorderSizePixel = 0
  76. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  77. main.Size = UDim2.new(0, 146, 0, 28)
  78. main.Active = true
  79. main.Draggable = false
  80.  
  81. TextLabel.Parent = main
  82. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  83. TextLabel.BorderSizePixel = 0
  84. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  85. TextLabel.Font = Enum.Font.SciFi
  86. TextLabel.Text = "Misc"
  87. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. TextLabel.TextSize = 17.000
  89. TextLabel.TextWrapped = true
  90.  
  91. Frame.Parent = main
  92. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  93. Frame.BorderSizePixel = 0
  94. Frame.Position = UDim2.new(0, 0, 1, 0)
  95. Frame.Size = UDim2.new(0, 146, 0, 61)
  96.  
  97. INFJUMP.Name = "INFJUMP"
  98. INFJUMP.Parent = main
  99. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  100. INFJUMP.BorderSizePixel = 0
  101. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  102. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  103. INFJUMP.Font = Enum.Font.SourceSans
  104. INFJUMP.Text = ""
  105. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  106. INFJUMP.TextSize = 14.000
  107. INFJUMP.MouseButton1Down:connect(function()
  108. local Player = game:GetService'Players'.LocalPlayer;
  109. local UIS = game:GetService'UserInputService';
  110.  
  111. _G.JumpHeight = 50;
  112.  
  113. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  114.  
  115. UIS.InputBegan:connect(function(UserInput)
  116. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  117. Action(Player.Character.Humanoid, function(self)
  118. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  119. Action(self.Parent.HumanoidRootPart, function(self)
  120. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  121. end)
  122. end
  123. end)
  124. end
  125. end)
  126. end)
  127.  
  128. TextLabel_2.Parent = main
  129. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  130. TextLabel_2.BorderSizePixel = 0
  131. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  132. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  133. TextLabel_2.Font = Enum.Font.SciFi
  134. TextLabel_2.Text = "Inf jump"
  135. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  136. TextLabel_2.TextSize = 17.000
  137. TextLabel_2.TextWrapped = true
  138.  
  139. -- Scripts:
  140.  
  141. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  142. local script = Instance.new('LocalScript', INFJUMP)
  143.  
  144. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  145.  
  146. counter = 0
  147.  
  148. while wait(0.1)do
  149. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  150.  
  151. counter = counter + 0.01
  152. end
  153. end
  154. coroutine.wrap(TKDWQ_fake_script)()
  155. end
  156. })
  157. local Tab = Window:MakeTab({
  158. Name = "TP (BUGGY)",
  159. Icon = "rbxassetid://4483345998",
  160. PremiumOnly = false
  161. })
  162. Tab:AddButton({
  163. Name = "Tp to end (wait 5 sec ones clicked.)",
  164. Callback = function()
  165. wait(5)
  166. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-833.005554, 5796.43213, -129.220184, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  167. end
  168. })
  169. Tab:AddButton({
  170. Name = "Tp to badge 4",
  171. Callback = function()
  172. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-261.829285, 499.964783, 554.728088, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  173. end
  174. })
  175. Tab:AddButton({
  176. Name = "Tp to badge 2",
  177. Callback = function()
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-19.0673256, -100.049454, 491.983429, -0.173833728, -0.0084959222, -0.98473835, 0.000824728748, 0.999961197, -0.00877284631, 0.984774709, -0.00233715866, -0.1738199)
  179. end
  180. })
  181. Tab:AddButton({
  182. Name = "Tp to badge 3",
  183. Callback = function()
  184. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-705.612671, 3293.98877, 525.472107, -0.962480903, -0.00842500106, -0.271218687, -0.0074795559, 0.999961793, -0.00451941462, 0.271246403, -0.00232125493, -0.962507129)
  185. end
  186. })
  187.  
  188. Tab:AddButton({
  189. Name = "Tp to badge SECRET (Really Buggy)",
  190. Callback = function()
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-550.810364, 855.075684, 769.998474, -9.77516174e-06, 0.253499538, -0.967335463, -0.305772752, 0.921003759, 0.241360947, 0.952104449, 0.295787185, 0.0775042772)
  192. end
  193. })
  194.  
  195. Tab:AddButton({
  196. Name = "Admin (Make sure to press the Anti-Cheat Bypass.)",
  197. Callback = function()
  198. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  199. end
  200. })
  201. Tab:AddButton({
  202. Name = "Anti-Cheat Bypass(Sometimes detected)",
  203. Callback = function()
  204. loadstring(game:HttpGet('https://raw.githubusercontent.com/Tamim468/releases/main/bypass.lua'))()
  205. end
  206. })
  207. Tab:AddButton({
  208. Name = "Auto collect Badges",
  209. Callback = function()
  210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-550.810364, 855.075684, 769.998474, -9.77516174e-06, 0.253499538, -0.967335463, -0.305772752, 0.921003759, 0.241360947, 0.952104449, 0.295787185, 0.0775042772)
  211. wait(1)
  212. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-705.612671, 3293.98877, 525.472107, -0.962480903, -0.00842500106, -0.271218687, -0.0074795559, 0.999961793, -0.00451941462, 0.271246403, -0.00232125493, -0.962507129)
  213. wait(1)
  214. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-19.0673256, -100.049454, 491.983429, -0.173833728, -0.0084959222, -0.98473835, 0.000824728748, 0.999961197, -0.00877284631, 0.984774709, -0.00233715866, -0.1738199)
  215. wait(1)
  216. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-261.829285, 499.964783, 554.728088, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  217. end
  218. })
  219. local Tab = Window:MakeTab({
  220. Name = "FUN",
  221. Icon = "rbxassetid://4483345998",
  222. PremiumOnly = false
  223. })
  224. Tab:AddButton({
  225. Name = "Headless",
  226. Callback = function()
  227. game.Players.LocalPlayer.Character.Head.Transparency = 100
  228. game.Players.LocalPlayer.Character.Head.face.Transparency = 100
  229. end
  230. })
  231. Tab:AddButton({
  232. Name = "Sit",
  233. Callback = function()
  234. game.Players.LocalPlayer.Character.Humanoid.Sit = true
  235. end
  236. })
  237. Tab:AddButton({
  238. Name = "Fall/Ragdoll",
  239. Callback = function()
  240. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  241. wait(5)
  242. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  243. end
  244. })
  245. Tab:AddButton({
  246. Name = "AUTO COLLECT COINS (BUGGY) PRESS agian after it stops.",
  247. Callback = function()
  248. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-865.831848, 3946.09155, 660.183594, 5.33461571e-05, -0.164960742, -0.986300111, -1, -5.34057617e-05, -4.51505184e-05, -4.51505184e-05, 0.986300111, -0.164960742)
  249. wait(1)
  250. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-791.223328, 5298.83594, -104.659119, 9.1791153e-06, 0.495062947, 0.868857145, -0.996192455, 0.0757525563, -0.0431522727, -0.0871812403, -0.865548491, 0.493178666)
  251. wait(1)
  252. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-740.853882, 1730.88013, 451.722595, -5.41210175e-05, -0.346899003, 0.93790251, -1, 5.41210175e-05, -3.76701355e-05, -3.76701355e-05, -0.93790251, -0.346899033)
  253. wait(1)
  254. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-920.482117, 2704.53296, 846.168457, 1.87158585e-05, 0.0280332267, 0.999607205, -1.00000012, 1.87158585e-05, 1.83284283e-05, -1.83284283e-05, -0.999607205, 0.0280330777)
  255. wait(1)
  256. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-853.601746, 1024.43555, 762.335144, 9.41753387e-06, -0.00767326355, -0.999970555, -1, -9.41753387e-06, -9.29832458e-06, -9.29832458e-06, 0.999970555, -0.00767326355)
  257. wait(1)
  258. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-270.239441, -120.83226, 451.394257, 0.142094553, 0.847047687, 0.512171268, -0.989497781, 0.135413766, 0.0505696535, -0.026520133, -0.513978004, 0.857393324)
  259. wait(1)
  260. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-341.413116, 502.35318, 682.901001, -3.09944153e-05, 0.240325004, -0.970692456, -1, -3.09944153e-05, 2.42590904e-05, -2.42590904e-05, 0.970692456, 0.240325034)
  261. wait(1)
  262. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-119.413734, 203.045197, 536.456238, 5.62667847e-05, 0.61863488, 0.785678625, -1, 5.62667847e-05, 2.73287296e-05, -2.73287296e-05, -0.785678625, 0.61863482)
  263. wait(3)
  264. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(24.8223438, -98.9841156, 906.893372, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  265. wait(1)
  266. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  267. end
  268. })
  269.  
  270. local Tab = Window:MakeTab({
  271. Name = "Misc",
  272. Icon = "rbxassetid://4483345998",
  273. PremiumOnly = false
  274. })
  275. Tab:AddButton({
  276. Name = "Player ESP",
  277. Callback = function()
  278. local players = game.Players:GetPlayers()
  279.  
  280. for i,v in pairs(players) do
  281. local esp = Instance.new("Highlight")
  282. esp.Name = v.Name
  283. esp.FillTransparency = 0
  284. esp.FillColor = Color3.new(255, 0, 0)
  285. esp.OutlineColor = Color3.new(1, 0.333333, 1)
  286. esp.OutlineTransparency = 0
  287. esp.Parent = v.Character
  288. end
  289. end
  290. })
  291. Tab:AddButton({
  292. Name = "Coin ESP (PATCHED)",
  293. Callback = function()
  294. print("Patched")
  295. end
  296. })
  297. Tab:AddButton({
  298. Name = "VISUAL COINS",
  299. Callback = function()
  300. game.Players.LocalPlayer.leaderstats.Coins.Value = 7000
  301. end
  302. })
  303. Tab:AddButton({
  304. Name = "GOD MODE",
  305. Callback = function()
  306. game.Players.LocalPlayer.Character.Humanoid.Health = 900000000000000000000000000000000000000000000
  307.  
  308. end
  309. })
  310.  
Add Comment
Please, Sign In to add comment