shiyamdabomb

Bubble Gum Simulator Auto-Farm and Auto-Sell

May 4th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. --[[
  2. Developer by TitaniumDeveloper#7719
  3.  
  4. https://discord.gg/g9UVAPk
  5.  
  6. https://v3rmillion.net/member.php?action=profile&uid=234837
  7.  
  8. Unpatched (Last Checked Friday - November 23, 2018)
  9.  
  10. Chances are you WILL need a paid exploit to use this script, if it doesn't work and you're using a free exploit there isn't much I can do.
  11. --]]
  12. local RemotesTable = {}
  13. local TRUEREMOTE
  14.  
  15. for _,Remote in pairs (game.ReplicatedStorage:GetChildren()) do
  16. if Remote:IsA("RemoteEvent") or Remote:IsA("RemoteFunction") and Remote.Name ~= "Network" then
  17. Remote.Name = #RemotesTable + 1
  18. RemotesTable[#RemotesTable + 1] = Remote
  19. end
  20. end
  21.  
  22. spawn(function()
  23. while wait() do
  24. if TRUEREMOTE then
  25. TRUEREMOTE:FireServer("BlowBubble")
  26. TRUEREMOTE:FireServer("SellBubble", "Sell")
  27. TRUEREMOTE:FireServer("SellBubble", "TwilightSell")
  28. TRUEREMOTE:FireServer("ClaimAchievement", 1)
  29. TRUEREMOTE:FireServer("ClaimAchievement", 2)
  30. TRUEREMOTE:FireServer("ClaimAchievement", 3)
  31. end
  32. end
  33. end)
  34.  
  35. Detect = {
  36. RemoteEvent = true;
  37. RemoteFunction = true;
  38. }
  39.  
  40. local MT = getrawmetatable(game)
  41.  
  42. if setreadonly then
  43. setreadonly(MT,false)
  44. end
  45.  
  46. if make_writeable then
  47. make_writeable(MT)
  48. end
  49.  
  50. local oldNamecall = MT.__namecall
  51.  
  52. MT.__namecall = function(instance,...)
  53. local args = {...}
  54. local Check = args[#args]
  55. if (Check=="FireServer" or Check=="Fire" or Check=="InvokeServer" or Check=="Invoke") and Detect[instance.ClassName] then
  56. if args[1] == "BlowBubble" then
  57. TRUEREMOTE = instance
  58. return {oldNamecall(instance,...)}
  59. end
  60. end
  61. return oldNamecall(instance,...)
  62. end
Add Comment
Please, Sign In to add comment