You can determine how much money you will receive by editing the code
1local ReplicatedStorage = game:GetService("ReplicatedStorage")
2local GiveCash = ReplicatedStorage.RemoteEvents.VfxEvents.GiveCash
3
4while true do
5 GiveCash:FireServer(100000)
6 task.wait(0.1)
7end