Advertisement
Guest User

Untitled

a guest
Nov 9th, 2021
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. --www.rblxscripts.net--
  2. for i,v in pairs(getconnections(game.Players.LocalPlayer.Idled)) do
  3. v:Disable()
  4. end
  5.  
  6. local SolarisLib = loadstring(game:HttpGet("https://solarishub.dev/SolarisLib.lua"))()
  7.  
  8. local win = SolarisLib:New({
  9. Name = "〈👻〉Phantom Hub | Discord.gg/phantomhub",
  10. FolderToSave = "〈👻〉Phantom Hub"
  11. })
  12.  
  13. SolarisLib:Notification("〈👻〉Phantom Hub", "〈👻〉Phantom Hub Was Executed Successfully.")
  14.  
  15. local main = win:Tab("Main Farm")
  16. local m1 = main:Section("Auto - Farms")
  17.  
  18. m1:Toggle("Auto Bounce HitBox", false, "Auto - HitBox", function(v)
  19. getgenv().AutoFarm = v
  20. while AutoFarm do wait()
  21. pcall(function()
  22. for i,v in pairs(game.Workspace.OrbFolder:GetChildren()) do
  23. if v:IsA("Model") and v:FindFirstChild("HitBox") then
  24. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HitBox.CFrame
  25. wait(1)
  26. end
  27. end
  28. end)
  29. end
  30. end)
  31.  
  32. m1:Toggle("Auto Collect Drops", false, "Auto - Farm", function(v)
  33. getgenv().Collect = v
  34. while Collect do wait()
  35. pcall(function()
  36. for i,v in pairs(game.Workspace.Dropped:GetChildren()) do
  37. if v:IsA("Model") and v:FindFirstChild("Orb") then
  38. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Orb.CFrame
  39. end
  40. end
  41. end)
  42. end
  43. end)
  44.  
  45. m1:Toggle("Auto Chest Farm", false, "Auto - Farm", function(v)
  46. getgenv().ChestFarm = v
  47. while ChestFarm do wait()
  48. pcall(function()
  49. for i,v in pairs(game.Workspace:GetChildren()) do
  50. if v:IsA("Model") and v:FindFirstChild("Root") then
  51. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Root.CFrame
  52. wait(1.5)
  53. game:service('VirtualInputManager'):SendKeyEvent(true, "E", false, game)
  54. wait(2)
  55. end
  56. end
  57. end)
  58. end
  59. end)
  60.  
  61.  
  62. m1:Button("God Mode By Ezpi ", function()
  63. --// Exploit Check \\--
  64. if #{hookmetamethod, getnamecallmethod} ~= 2 then
  65. while true do
  66. end
  67. end
  68.  
  69. --// Remote Hook \\--
  70. local OldNameCall = nil
  71. OldNameCall = hookmetamethod(game, "__namecall", function(Self, ...)
  72. if not checkcaller() and getnamecallmethod() == "FireServer" and Self.Name == "HitDetection" then
  73. return
  74. end
  75. return OldNameCall(Self, ...)
  76. end)
  77. end)
  78.  
  79. local cred = win:Tab("Credits")
  80. local c1 = cred:Section("Made By:")
  81.  
  82. c1:Button("Join Discord", function()
  83. setclipboard("https://discord.com/phantomHub")
  84. end)
  85.  
  86. c1:Button("Sensei Joshy#1060", function()
  87. setclipboard("Sensei Joshy#1060")
  88. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement