xvc200

legends of speed

Apr 25th, 2025
2,528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.52 KB | None | 0 0
  1. local VLib = loadstring(game:HttpGet("https://gitlab.com/L1ZOT/test-project/-/raw/main/PJM-GUI"))()
  2. local Win = VLib:Window("Project Meow", "Speed of Legends")
  3. local Main = Win:Tab("Main")
  4. local Autofarm = Win:Tab("Autofarm")
  5. local Credits = Win:Tab("Credits")
  6.  
  7. if game.workspace:FindFirstChild("ManahubPart") then
  8.  
  9. else
  10. local ManahubPart = Instance.new("Part")
  11. ManahubPart.Name = "ManahubPart"
  12. ManahubPart.Parent = game.Workspace
  13. ManahubPart.Anchored = true
  14. ManahubPart.Transparency = 0
  15. ManahubPart.Size = Vector3.new(30,-0.5,30)
  16. ManahubPart.Position = Vector3.new(-543.452, 2873.2, 324.647)
  17. end
  18.  
  19. Main:Slider("WalkSpeed", 0, 250, 16, function(v)
  20. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  21. end)
  22.  
  23. Main:Slider("JumpPower", 0, 250, 50, function(v)
  24. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  25. end)
  26.  
  27.  
  28. Autofarm:Toggle("Auto Steps", false, function (t)
  29. getgenv().Autostep = t
  30. while wait() do
  31. if getgenv().Autostep == true then
  32. pcall(function ()
  33. for i = 1,20 do
  34. local args = {
  35. [1] = "collectOrb",
  36. [2] = "Red Orb",
  37. [3] = "City"
  38. }
  39.  
  40. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  41. local args = {
  42. [1] = "collectOrb",
  43. [2] = "Blue Orb",
  44. [3] = "City"
  45. }
  46.  
  47. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  48. end
  49. end)
  50. end
  51. end
  52. end)
  53.  
  54. Autofarm:Toggle("Auto collect gems", false, function(t)
  55. spawn(function()
  56. getgenv().AutocollectDiamonds = t
  57. while task.wait() do
  58. if getgenv().AutocollectDiamonds == true then
  59. pcall(function()
  60. for i = 1,10 do
  61. local args = {
  62. [1] = "collectOrb",
  63. [2] = "Gem",
  64. [3] = "City"
  65. }
  66.  
  67. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  68.  
  69. local args = {
  70. [1] = "collectOrb",
  71. [2] = "Gem",
  72. [3] = "Desert"
  73. }
  74.  
  75. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  76.  
  77. local args = {
  78. [1] = "collectOrb",
  79. [2] = "Gem",
  80. [3] = "Magma City"
  81. }
  82.  
  83. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  84. end
  85. end)
  86. end
  87. end
  88. end)
  89. end)
  90.  
  91. Autofarm:Toggle("Hops Farm", false, function(t)
  92. getgenv().Autohops = t
  93. while task.wait() do
  94. if getgenv().Autohops == true then
  95. for i,v in pairs(game:GetService("Workspace").Hoops:GetChildren()) do
  96. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  97. end
  98. end
  99. end
  100. end)
  101.  
  102. Autofarm:Toggle("Safe Hops Farm", false, function(t)
  103. HoopsFarm = t
  104. end)
  105.  
  106. spawn(function()
  107. while task.wait() do
  108. if HoopsFarm then
  109. pcall(function()
  110. for i,v in pairs(game:GetService("Workspace").Hoops:GetChildren()) do
  111. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  112. wait(.3)
  113. end
  114. end)
  115. end
  116. end
  117. end)
  118.  
  119. spawn(function()
  120. while task.wait(.3) do
  121. if HoopsFarm then
  122. pcall(function()
  123. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-547.52026, 2893.19995, 327.647003)
  124. end)
  125. end
  126. end
  127. end)
  128.  
  129.  
  130. Autofarm:Toggle("AutoRebirth", false, function(t)
  131. spawn(function()
  132. getgenv().AutoRebirth = t
  133. while wait() do
  134. if getgenv().AutoRebirth == true then
  135. pcall(function ()
  136. local args = {
  137. [1] = "rebirthRequest"
  138. }
  139.  
  140. game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
  141. local args = {
  142. [1] = "rebirthRequest"
  143. }
  144.  
  145. game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
  146. end)
  147. end
  148. end
  149. end)
  150. end)
  151.  
  152. Autofarm:Button("Collect Chests", false, function(t)
  153.  
  154. local args = {
  155. [1] = "groupRewards"
  156. }
  157. game:GetService("ReplicatedStorage").rEvents.groupRemote:InvokeServer(unpack(args))
  158.  
  159. local args = {
  160. [1] = "Enchanted Chest"
  161. }
  162.  
  163. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  164. wait()
  165. local args = {
  166. [1] = workspace.rewardChests.rewardChest
  167. }
  168.  
  169. game:GetService("ReplicatedStorage").rEvents.collectCourseChestRemote:InvokeServer(unpack(args))
  170. end)
  171.  
  172.  
  173.  
  174.  
  175. Credits:Button("LeadMarker#1219 & Karma#9368", function()
  176.  
  177. setclipboard("https://discord.gg/97anmxFpkU")
  178.  
  179. end)
  180.  
  181. Credits:Button("Mana#9724 & Septex#9788 (he is very hot)", function()
  182. setclipboard("https://discord.gg/97anmxFpkU")
  183. end)
  184.  
  185. Credits:Button("UI Designer: Luke Marcus#4347", function()
  186. setclipboard("https://discord.gg/97anmxFpkU")
  187. end)
  188.  
  189. Credits:Button("Project Meow Discord Server", function()
  190. setclipboard("https://discord.gg/97anmxFpkU")
  191. local req = (syn and syn.request) or (http and http.request) or http_request
  192. if req then
  193. req({
  194. Url = 'http://127.0.0.1:6463/rpc?v=1',
  195. Method = 'POST',
  196. Headers = {
  197. ['Content-Type'] = 'application/json',
  198. Origin = 'https://discord.com'
  199. },
  200. Body = game:GetService('HttpService'):JSONEncode({
  201. cmd = 'INVITE_BROWSER',
  202. nonce = game:GetService('HttpService'):GenerateGUID(false),
  203. args = {code = '97anmxFpkU'}
  204. })
  205. })
  206. end
  207. end)
  208.  
  209. Credits:line()
  210. Credits:Button("Destroy Gui", function()
  211. game.CoreGui:FindFirstChild("woof"):Destroy()
  212. end)
  213.  
  214. Credits:Button("Rejoin", function()
  215. local ts = game:GetService("TeleportService")
  216. local p = game:GetService("Players").LocalPlayer
  217. ts:Teleport(game.PlaceId, p)
  218. end)
Add Comment
Please, Sign In to add comment