Advertisement
2AreYouMental110

Roblox break in extreme hack (execute with EasyXploits dll)

May 11th, 2020 (edited)
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -- couldnt find who this was from
  2.  
  3. local library = loadstring(game:HttpGet("https://pastebin.com/raw/b0BKAXFM"))();
  4.  
  5. local Window1 = library:CreateWindow("Spawn Items");
  6. local Window2 = library:CreateWindow("Other");
  7. local Window3 = library:CreateWindow("Coming Soon!");
  8. Window1:Button("Spawn Apple",function()
  9. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  10. end);
  11.  
  12. Window1:Button("Spawn Cookie",function()
  13. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  14. end);
  15.  
  16. Window1:Button("Spawn Pizza Slice",function()
  17. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza2")
  18. end);
  19.  
  20. Window1:Button("Spawn Chips",function()
  21. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  22. end);
  23.  
  24. Window1:Button("Spawn BloxyCola",function()
  25. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  26. end);
  27.  
  28. Window1:Button("Spawn MedKit",function()
  29. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  30. end);
  31.  
  32. Window1:Button("Spawn Planks",function()
  33. local RefreshPlanks = game:GetService("ReplicatedStorage").RemoteEvents.RefreshPlanks
  34. RefreshPlanks:FireServer()
  35. end);
  36.  
  37. Window1:Button("Give Bat",function()
  38. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")
  39. end);
  40.  
  41. Window1:Button("Spawn Pie",function()
  42. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pie")
  43. end);
  44.  
  45. Window1:Button("Spawn Key",function()
  46. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  47. end);
  48.  
  49. Window2:Button("God Mode",function()
  50. while wait() do
  51. local Energy = game:GetService("ReplicatedStorage").RemoteEvents.Energy
  52. Energy:FireServer(
  53. 15,
  54. "Apple"
  55. )
  56. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  57. end
  58. end);
  59.  
  60. Window2:Button("Heal Others",function()
  61. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cure")
  62. wait(1)
  63. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cure") then
  64. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cure") then
  65. game:GetService("ReplicatedStorage").RemoteEvents.BackpackEvent:FireServer("Equip", game:GetService("Players").LocalPlayer.Backpack.Cure)
  66. else
  67. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cure")
  68. wait(0.1)
  69. end
  70. end
  71. wait(1)
  72. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  73. game:GetService("ReplicatedStorage").RemoteEvents.CurePlayer:FireServer(v)
  74. end
  75. end);
  76.  
  77. Window2:Button("Delete Items",function()
  78. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  79. if v:IsA("Tool") then
  80. v:Destroy()
  81. end
  82. end
  83. end);
  84.  
  85. Window2:Button("Kill Bad Guys",function()
  86. while wait() do
  87. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  88. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v, 8)
  89. end
  90. end
  91. end);
  92.  
  93. Window2:Button("Unlock Basement",function()
  94. local UnlockDoor = game:GetService("ReplicatedStorage").RemoteEvents.UnlockDoor
  95. UnlockDoor:FireServer()
  96. end);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement