Mr_3242

☎️ scam call center simulator REBOOTED script

Mar 27th, 2026 (edited)
91
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.30 KB | Gaming | 0 0
  1. -- ===== Load Rayfield =====
  2. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  3.  
  4. local Window = Rayfield:CreateWindow({
  5.     Name = "☎️ scam call center simulator REBOOTED",
  6.     LoadingTitle = "Free Money",
  7.     LoadingSubtitle = "follow me on TikTok Mr_3242",
  8.     ConfigurationSaving = { Enabled = false }
  9. })
  10.  
  11. -- ===== Notification Filter =====
  12. local OriginalNotify = Rayfield.Notify
  13. Rayfield.Notify = function(self,data)
  14.     if data and data.Title then
  15.         local title = tostring(data.Title)
  16.         if title:find("Interface") or title:find("Rayfield") then
  17.             return
  18.         end
  19.     end
  20.     return OriginalNotify(self,data)
  21. end
  22.  
  23. local function Notify(title,text)
  24.     Rayfield:Notify({
  25.         Title = title,
  26.         Content = text,
  27.         Duration = 3,
  28.         Image = 4483362458
  29.     })
  30. end
  31.  
  32. --// CLEAN RE-EXECUTE
  33. if getgenv().AutoFarmUnload then
  34.     pcall(getgenv().AutoFarmUnload)
  35. end
  36.  
  37. -- ===== Tabs =====
  38. local CheatsTab = Window:CreateTab("Cheats", 4483362458)
  39. local CreditsTab = Window:CreateTab("Credits", 4483362458)
  40. local UnloadTab = Window:CreateTab("Unload", 4483362458)
  41.  
  42. -- ===== Services =====
  43. local player = game:GetService("Players").LocalPlayer
  44. local rs = game:GetService("ReplicatedStorage")
  45. local Lighting = game:GetService("Lighting")
  46.  
  47. -- ===== Auto get Bobux =====
  48. local PhoneReward = rs:WaitForChild("PhoneReward")
  49. local CallMade = rs:WaitForChild("CallMade")
  50.  
  51. local running = true
  52. local rewardEnabled = false
  53. local delayToWait = 0.5
  54.  
  55. CheatsTab:CreateToggle({
  56.     Name = "Auto get Bobux",
  57.     CurrentValue = false,
  58.     Callback = function(v)
  59.         rewardEnabled = v
  60.     end
  61. })
  62.  
  63. CheatsTab:CreateSlider({
  64.     Name = "Delay to Wait",
  65.     Range = {0,1},
  66.     Increment = 0.05,
  67.     CurrentValue = 0.5,
  68.     Callback = function(v)
  69.         delayToWait = v
  70.     end
  71. })
  72.  
  73. -- ===== ANTI LAG =====
  74. local fpsConnection
  75. local stored = {}
  76. local antiLagEnabled = false
  77.  
  78. local function ApplyAntiLag(state)
  79.     if state then
  80.         stored = {}
  81.  
  82.         for _,v in pairs(game:GetDescendants()) do
  83.  
  84.             -- disable effects
  85.             if v:IsA("ParticleEmitter") or v:IsA("Trail") or v:IsA("Smoke") or v:IsA("Fire") then
  86.                 stored[v] = {Enabled = v.Enabled}
  87.                 v.Enabled = false
  88.             end
  89.  
  90.             if v:IsA("PostEffect") or v:IsA("Atmosphere") then
  91.                 stored[v] = {Enabled = v.Enabled}
  92.                 v.Enabled = false
  93.             end
  94.  
  95.          
  96.             if v:IsA("BasePart") then
  97.                 stored[v] = stored[v] or {}
  98.                 stored[v].Material = v.Material
  99.                 stored[v].Reflectance = v.Reflectance
  100.  
  101.                 v.Material = Enum.Material.SmoothPlastic
  102.                 v.Reflectance = 0
  103.             end
  104.  
  105.             -- textures (plants/details)
  106.             if v:IsA("Decal") or v:IsA("Texture") then
  107.                 stored[v] = {Transparency = v.Transparency}
  108.                 v.Transparency = 1
  109.             end
  110.         end
  111.  
  112.         stored.Lighting = {
  113.             GlobalShadows = Lighting.GlobalShadows,
  114.             FogEnd = Lighting.FogEnd,
  115.             Brightness = Lighting.Brightness
  116.         }
  117.  
  118.         Lighting.GlobalShadows = false
  119.         Lighting.FogEnd = 1e10
  120.         Lighting.Brightness = 1
  121.  
  122.         settings().Rendering.QualityLevel = Enum.QualityLevel.Level01
  123.  
  124.         fpsConnection = game.DescendantAdded:Connect(function(v)
  125.             if v:IsA("ParticleEmitter") or v:IsA("Trail") then
  126.                 v.Enabled = false
  127.             end
  128.             if v:IsA("Decal") or v:IsA("Texture") then
  129.                 v.Transparency = 1
  130.             end
  131.             if v:IsA("BasePart") then
  132.                 v.Material = Enum.Material.SmoothPlastic
  133.             end
  134.         end)
  135.  
  136.     else
  137.         for obj,data in pairs(stored) do
  138.             if typeof(obj) == "Instance" and obj then
  139.                 pcall(function()
  140.                     for prop,val in pairs(data) do
  141.                         obj[prop] = val
  142.                     end
  143.                 end)
  144.             end
  145.         end
  146.  
  147.         if stored.Lighting then
  148.             Lighting.GlobalShadows = stored.Lighting.GlobalShadows
  149.             Lighting.FogEnd = stored.Lighting.FogEnd
  150.             Lighting.Brightness = stored.Lighting.Brightness
  151.         end
  152.  
  153.         settings().Rendering.QualityLevel = Enum.QualityLevel.Automatic
  154.  
  155.         if fpsConnection then
  156.             fpsConnection:Disconnect()
  157.             fpsConnection = nil
  158.         end
  159.  
  160.         stored = {}
  161.     end
  162. end
  163.  
  164. CheatsTab:CreateToggle({
  165.     Name = "Anti Lag",
  166.     CurrentValue = false,
  167.     Callback = function(v)
  168.         antiLagEnabled = v
  169.         ApplyAntiLag(v)
  170.     end
  171. })
  172.  
  173. -- ===== Disable Elevator GUI Fade =====
  174. local playerGui = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
  175. local cutsceneGui = playerGui:WaitForChild("Cutscene")
  176.  
  177. local removedFade = nil
  178. local fadeDisabled = false
  179. local fadeConnection = nil
  180.  
  181. local function getFade()
  182.     return cutsceneGui:FindFirstChild("Fade")
  183. end
  184.  
  185. local function disableFade()
  186.     local fade = getFade()
  187.  
  188.     if fade and not removedFade then
  189.         removedFade = fade:Clone()
  190.         fade:Destroy()
  191.     end
  192. end
  193.  
  194. local function restoreFade()
  195.     if removedFade and not getFade() then
  196.         removedFade:Clone().Parent = cutsceneGui
  197.     end
  198. end
  199.  
  200. CheatsTab:CreateToggle({
  201.     Name = "Disable Elevator GUI Fade",
  202.     CurrentValue = false,
  203.     Callback = function(v)
  204.         fadeDisabled = v
  205.  
  206.         if v then
  207.             disableFade()
  208.  
  209.             if fadeConnection then
  210.                 fadeConnection:Disconnect()
  211.             end
  212.  
  213.             fadeConnection = cutsceneGui.ChildAdded:Connect(function(child)
  214.                 if child.Name == "Fade" then
  215.                     task.wait()
  216.  
  217.                     if fadeDisabled and child.Parent then
  218.                         child:Destroy()
  219.                     end
  220.                 end
  221.             end)
  222.  
  223.         else
  224.             if fadeConnection then
  225.                 fadeConnection:Disconnect()
  226.                 fadeConnection = nil
  227.             end
  228.  
  229.             restoreFade()
  230.         end
  231.     end
  232. })
  233.  
  234. -- ===== MAIN LOOP =====
  235. task.spawn(function()
  236.     while running do
  237.         task.wait(delayToWait)
  238.         if rewardEnabled then
  239.             PhoneReward:FireServer()
  240.             CallMade:FireServer()
  241.         end
  242.     end
  243. end)
  244.  
  245. -- ===== Credits =====
  246. CreditsTab:CreateParagraph({
  247.     Title = "Credits",
  248.     Content = "Script created by Mr_3242\nThanks for using the script!"
  249. })
  250.  
  251. CreditsTab:CreateButton({
  252.     Name = "Copy TikTok Link",
  253.     Callback = function()
  254.         setclipboard("https://www.tiktok.com/@Mr_3242")
  255.         Notify("Copied","TikTok link copied")
  256.     end
  257. })
  258.  
  259. CreditsTab:CreateButton({
  260.     Name = "Copy YouTube Link",
  261.     Callback = function()
  262.         setclipboard("https://www.youtube.com/@Mr_3242.")
  263.         Notify("Copied","YouTube link copied")
  264.     end
  265. })
  266.  
  267. CreditsTab:CreateButton({
  268.     Name = "Copy Twitch Link",
  269.     Callback = function()
  270.         setclipboard("https://m.twitch.tv/quantumx_42/home")
  271.         Notify("Copied","Twitch link copied")
  272.     end
  273. })
  274.  
  275. -- ===== UNLOAD BUTTON  =====
  276. getgenv().AutoFarmUnload = function()
  277.  
  278.     -- stop loops
  279.     running = false
  280.     rewardEnabled = false
  281.  
  282.     -- anti lag restore
  283.     if antiLagEnabled then
  284.         ApplyAntiLag(false)
  285.         antiLagEnabled = false
  286.     end
  287.  
  288.     -- fade restore
  289.     fadeDisabled = false
  290.  
  291.     if fadeConnection then
  292.         fadeConnection:Disconnect()
  293.         fadeConnection = nil
  294.     end
  295.  
  296.     restoreFade()
  297.     removedFade = nil
  298.  
  299.     -- destroy rayfield
  300.     pcall(function()
  301.         Rayfield:Destroy()
  302.     end)
  303.  
  304.     -- kill leftover rayfield guis
  305.     pcall(function()
  306.         for _,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  307.             local n = v.Name:lower()
  308.             if n:find("rayfield")
  309.             or n:find("sirius")
  310.             or n:find("notify")
  311.             or n:find("interface") then
  312.                 v:Destroy()
  313.             end
  314.         end
  315.     end)
  316.  
  317.     -- remove unload function
  318.     getgenv().AutoFarmUnload = nil
  319. end
  320.  
  321. UnloadTab:CreateButton({
  322.     Name = "Unload Script",
  323.     Callback = function()
  324.         if getgenv().AutoFarmUnload then
  325.             getgenv().AutoFarmUnload()
  326.         end
  327.     end
  328. })
Tags: delta
Advertisement
Comments
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment