Scriptorz5

bubblegum sim

Nov 23rd, 2018
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 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("ClaimAchievement", 1)
  28. end
  29. end
  30. end)
  31.  
  32. Detect = {
  33. RemoteEvent = true;
  34. RemoteFunction = true;
  35. }
  36.  
  37. local MT = getrawmetatable(game)
  38.  
  39. if setreadonly then
  40. setreadonly(MT,false)
  41. end
  42.  
  43. if make_writeable then
  44. make_writeable(MT)
  45. end
  46.  
  47. local oldNamecall = MT.__namecall
  48.  
  49. MT.__namecall = function(instance,...)
  50. local args = {...}
  51. local Check = args[#args]
  52. if (Check=="FireServer" or Check=="Fire" or Check=="InvokeServer" or Check=="Invoke") and Detect[instance.ClassName] then
  53. if args[1] == "BlowBubble" then
  54. TRUEREMOTE = instance
  55. return {oldNamecall(instance,...)}
  56. end
  57. end
  58. return oldNamecall(instance,...)
  59. end
Add Comment
Please, Sign In to add comment