-- tiktok: Mr_Marquez93 - follow please <3 -- INSTRUCTIONS!!!!!!!!!! -- open up motoeats on your phone, click start job -- before you click accept run this script - it wont say the money has changed but it has -- after you have ran the script accept and complete the job -- free money :) local player = game:GetService("Players").LocalPlayer local function changePaymentAmount(parent) for _, child in ipairs(parent:GetChildren()) do if child:IsA("ValueBase") and child.Name == "paymentAmount" then print("Found paymentAmount. Old value:", child.Value) child.Value = 274984639612738164827319964832799116432817643218794646783216472318964321798643271984 print("paymentAmount changed to:", child.Value) return true elseif #child:GetChildren() > 0 then if changePaymentAmount(child) then return true end end end return false end local changed = changePaymentAmount(player)