How to make this cool cash effect

(18) How To Make A Cool Cash Effect Script In Roblox - YouTube

can someone explain this clearly to me as im confused. ^

1 Like

1st of all I think your in the wrong category 2nd of all if your asking what does the video mean well it means when you buy how to make it count up quickly animation on the money

1 Like

oops sorry what category would this be assigned to and thanks for explaining

1 Like

I think this should be resources then community resources

1 Like

but i need help with the scripting

1 Like

Doesn’t it say how to script it in the video and I’m not a scripter

1 Like

In the video, this effect is made with function for i = start, goal, increment do. Same script in the video:

local AmountToAdd = 50
local CashToAdd = 5
local YourMoney = NumberValue

for i = 1, AmountToAdd, CashToAdd do
    NumberValue.Value = NumberValue.Value + CashToAdd 
    task.wait()
end

First number (1) start
Second number (AmountToAdd) where is end (AmountToAdd = 50, because you wrote it above.)
And Third number (CashToAdd) how much it will add (CashToAdd = 5, because you wrote it above.)

So if you add in the function print(i), it will print 10x number in the range of 1 to 50. Specifically this:

1,6,11,16,21,26,31,36,41,46

In the fuction is more this lines:

 NumberValue.Value = NumberValue.Value + CashToAdd 
 task.wait()

First means that I add CashToAdd (5) to the money (NumberValue).
So if you have 10 money, and you add 5 then you will have 15. And this happens 10x because it’s in the function for. At the end you will have 10(start money) + 5 * 10.
The second is speed how fast fuction will be.

1 Like