Mr_3242

fast cash ( Ban or Get Banned ๐Ÿ”จ )

Apr 5th, 2026 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.20 KB | Gaming | 0 0
  1. --// LOAD RAYFIELD
  2. local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
  3.  
  4. --// FILTER NOTIFICATIONS
  5. local oldNotify = Rayfield.Notify
  6. Rayfield.Notify = function(self, data)
  7.     if data and data.Title then
  8.         local t = tostring(data.Title)
  9.         if t:find("Rayfield") or t:find("Interface") then return end
  10.     end
  11.     return oldNotify(self, data)
  12. end
  13.  
  14. --// NOTIFY FUNCTION
  15. local function Notify(t,c)
  16.     Rayfield:Notify({
  17.         Title=t,
  18.         Content=c,
  19.         Duration=3,
  20.         Image=4483362458
  21.     })
  22. end
  23.  
  24. --// WINDOW
  25. local Window = Rayfield:CreateWindow({
  26.     Name = "auto farm money",
  27.     LoadingTitle = "MONEY",
  28.     LoadingSubtitle = "follow me on TikTok Mr_3242"
  29. })
  30.  
  31. --// TABS
  32. local Tab = Window:CreateTab("Main", 4483362458)
  33. local CreditsTab = Window:CreateTab("Credits", 4483362458)
  34. local UnloadTab = Window:CreateTab("Unload", 4483362458)
  35.  
  36. --// SERVICES
  37. local Players          = game:GetService("Players")
  38. local RunService       = game:GetService("RunService")
  39. local UserInputService = game:GetService("UserInputService")
  40.  
  41. local player    = Players.LocalPlayer
  42. local character = player.Character or player.CharacterAdded:Wait()
  43.  
  44. --// VALUES
  45. local TARGET_POS  = Vector3.new(-85, 31, -21)
  46. local MAX_GRAVITY = 150
  47. local DEF_GRAVITY = 196.2
  48. local ACTIVE_JUMP = 0.1
  49. local DEF_JUMP    = 50
  50. local MAX_DIST    = 8
  51.  
  52. local isActive    = false
  53. local spamActive  = false
  54. local jumpKeyConn = nil
  55. local posConn     = nil
  56.  
  57. --// HELPERS
  58. local function getCharParts()
  59.     character = player.Character
  60.     if not character then return nil, nil end
  61.     return character:FindFirstChild("HumanoidRootPart"),
  62.            character:FindFirstChildOfClass("Humanoid")
  63. end
  64.  
  65. --// LOOP
  66. local function iniciarSpamLoop()
  67.     spamActive = true
  68.     task.spawn(function()
  69.         while spamActive do
  70.             local hrp, hum = getCharParts()
  71.             if hrp and hum then
  72.                 workspace.Gravity = MAX_GRAVITY
  73.                 hum.UseJumpPower  = true
  74.                 hum.JumpPower     = ACTIVE_JUMP
  75.                 hrp.CFrame        = CFrame.new(TARGET_POS + Vector3.new(0, 3, 0))
  76.                 hum.Jump          = true
  77.                 task.wait()
  78.  
  79.                 if not spamActive then break end
  80.  
  81.                 workspace.Gravity = DEF_GRAVITY
  82.                 hum.JumpPower     = DEF_JUMP
  83.                 hum.Jump          = false
  84.                 task.wait()
  85.             else
  86.                 task.wait()
  87.             end
  88.         end
  89.     end)
  90. end
  91.  
  92. local function detenerSpamLoop()
  93.     spamActive = false
  94. end
  95.  
  96. --// ENABLE
  97. local function activar()
  98.     isActive = true
  99.  
  100.     if posConn then posConn:Disconnect() end
  101.     posConn = RunService.Heartbeat:Connect(function()
  102.         if not isActive then return end
  103.         local hrp, _ = getCharParts()
  104.         if hrp and (hrp.Position - TARGET_POS).Magnitude > MAX_DIST then
  105.             hrp.CFrame = CFrame.new(TARGET_POS + Vector3.new(0, 3, 0))
  106.         end
  107.     end)
  108.  
  109.     if jumpKeyConn then jumpKeyConn:Disconnect() end
  110.     jumpKeyConn = UserInputService.InputBegan:Connect(function(input, gp)
  111.         if gp then return end
  112.         if input.KeyCode == Enum.KeyCode.Space then
  113.             local _, hum = getCharParts()
  114.             if hum then hum.Jump = true end
  115.         end
  116.     end)
  117.  
  118.     iniciarSpamLoop()
  119. end
  120.  
  121. --// DISABLE
  122. local function desactivar()
  123.     isActive = false
  124.  
  125.     detenerSpamLoop()
  126.  
  127.     if posConn then posConn:Disconnect() posConn = nil end
  128.     if jumpKeyConn then jumpKeyConn:Disconnect() jumpKeyConn = nil end
  129.  
  130.     workspace.Gravity = DEF_GRAVITY
  131.     local _, hum = getCharParts()
  132.     if hum then
  133.         hum.JumpPower = DEF_JUMP
  134.         hum.Jump      = false
  135.     end
  136. end
  137.  
  138. --// TOGGLE
  139. Tab:CreateToggle({
  140.     Name = "farm money (really good)",
  141.     CurrentValue = false,
  142.     Callback = function(Value)
  143.         if Value then activar() else desactivar() end
  144.     end,
  145. })
  146.  
  147. --// =========================
  148. --// ๐ŸŽ–๏ธ CREDITS TAB
  149. --// =========================
  150.  
  151. CreditsTab:CreateParagraph({
  152.     Title = "Credits",
  153.     Content = "Script created by Mr_3242\nThanks for using the script!"
  154. })
  155.  
  156. CreditsTab:CreateButton({
  157.     Name = "Copy TikTok",
  158.     Callback = function()
  159.         setclipboard("https://www.tiktok.com/@Mr_3242")
  160.         Notify("Copied","TikTok link copied")
  161.     end
  162. })
  163.  
  164. CreditsTab:CreateButton({
  165.     Name = "Copy YouTube",
  166.     Callback = function()
  167.         setclipboard("https://www.youtube.com/@Mr_3242.")
  168.         Notify("Copied","YouTube link copied")
  169.     end
  170. })
  171.  
  172. CreditsTab:CreateButton({
  173.     Name = "Copy Twitch",
  174.     Callback = function()
  175.         setclipboard("https://m.twitch.tv/quantumx_42/home")
  176.         Notify("Copied","Twitch link copied")
  177.     end
  178. })
  179.  
  180. --// =========================
  181. --// ๐Ÿงน UNLOAD SYSTEM
  182. --// =========================
  183.  
  184. getgenv().AutoFarmUnload = function()
  185.     desactivar()
  186.  
  187.     if posConn then posConn:Disconnect() end
  188.     if jumpKeyConn then jumpKeyConn:Disconnect() end
  189.  
  190.     pcall(function()
  191.         Rayfield:Destroy()
  192.     end)
  193.  
  194.     getgenv().AutoFarmUnload = nil
  195. end
  196.  
  197. UnloadTab:CreateButton({
  198.     Name = "Unload Script",
  199.     Callback = function()
  200.         getgenv().AutoFarmUnload()
  201.     end
  202. })
Tags: delta
Advertisement
Add Comment
Please, Sign In to add comment