For some reason when I this part of my script runs it does nothing:
local number = 1,333333 -- example, I know you can't do this you have to make this a string and tonumber it if you want this!
print(number) -- prints: 1,333333
rollTime *= 100
math.floor(rollTime)
rollTime /= 100
print(number) -- prints: 1,333333
I don’t know why ir doesn’t work the second time can someone help me or tell me another way to do this?