of     2   
chevron_rightchevron_rightchevron_right

Auxetic
#182974326Thursday, February 04, 2016 5:06 AM GMT

I want a script that has a microsecond for my basketball group. Ex: Under 24 seconds, it has 24.0 then it goes like this 23.9, 23.8, 23.7, 23.6, 23.5, 23.5, 23.4, 23.3, 23.2, 23.1, 23.0, 22.9... until it reach at 0.0 So if you think you can make a script like this, reply here! Maybe I can pay you 50 robux.
ferano
#182974468Thursday, February 04, 2016 5:09 AM GMT

Can you specify more clearly and I can probably just whip something up for free
Auxetic
#182974613Thursday, February 04, 2016 5:14 AM GMT

Tenths of a second. (ex: 0.5 / 4.7)
ferano
#182974679Thursday, February 04, 2016 5:16 AM GMT

Do you just want that to print?
SkelectroTM
#182974723Thursday, February 04, 2016 5:17 AM GMT

Like a clock timer countdown going down by .01? y-y-you too...
Auxetic
#182974757Thursday, February 04, 2016 5:18 AM GMT

Um, just a local.
Auxetic
#182974775Thursday, February 04, 2016 5:18 AM GMT

Yes, you got the idea.
gum444
#182975606Thursday, February 04, 2016 5:40 AM GMT

I think it would go like this... y = Instance.new("Hint") y.Parent = game.Workspace local time = 24 y.Text = time wait(0.1) time = -0.1 ??? im sure a good scripter could fix that because that will NOT work, but its a start!
Auxetic
#182975743Thursday, February 04, 2016 5:43 AM GMT

Thank you for idea but it just stays 24, might edit it idk.
Clirex
#182975983Thursday, February 04, 2016 5:49 AM GMT

gimme 50 robux for i = 1, 24, 0.10 do local value = 24-i print(value) end countdown with tenths of a second
ferano
#182976059Thursday, February 04, 2016 5:51 AM GMT

for (24, 0) do y = Instance.new("Hint", game.Workspace) local time = 24 y.Text = time wait(0.1) time = time -0.1 I'm on my phone so I can't do much, but here this is slightly improved
ferano
#182976088Thursday, February 04, 2016 5:51 AM GMT

I messed up the for statement but ya you get the point.
cofunction
#182976105Thursday, February 04, 2016 5:52 AM GMT

local num = 25 while wait(.1) do num = num - .1 if num <=0 then break end end #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
ferano
#182976154Thursday, February 04, 2016 5:53 AM GMT

for CountDown= 24, 0, 0.1 do y = Instance.new("Hint", game.Workspace) local time = 24 y.Text = time wait(0.1) time = time -0.1 I'm on my phone so I can't do much, but here this is slightly improved
Locard
#182976164Thursday, February 04, 2016 5:54 AM GMT

If you want to run into floating point errors, go with Clirex's script. If not, then... for i = 240,0,-1 do local text = i*.1 --do whatever you want with text wait(.1) end
MisBloxy
#182976296Thursday, February 04, 2016 5:57 AM GMT

wai is every 1 having a hard time with this? did u go in studio and est it? maybe not. i has an example too. i test mine and it works: m = Instance.new("Message") m.Parent = workspace t = 24 for i = 1, t*10 do t = t - 0.1 m.Text = t wait(0.1) end
Locard
#182976455Thursday, February 04, 2016 6:01 AM GMT

No one is having a hard time. It's just that everyone is giving a different result because there's multiple ways of writing out this problem. I tested mine and it works, of course.
cofunction
#182976523Thursday, February 04, 2016 6:03 AM GMT

Actually half of these are crap, because they result in the number being num.19999999. #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
ferano
#182976630Thursday, February 04, 2016 6:06 AM GMT

No no no this is the best way to do it: Print("24") Wait(0.1) Print("23.9") Wait(0.1) Print("23.8") Wait(0.1) Print("23.7") Wait(0.1) Print("23.6") Wait(0.1) Print("23.5") And so on until it reaches 0 :P This is super efficient and is totally what you're trying to do
Clirex
#182976792Thursday, February 04, 2016 6:13 AM GMT

youre all idiots, use mine op
Locard
#182976818Thursday, February 04, 2016 6:13 AM GMT

Thanks for understanding my post, Clirex.
cofunction
#182976835Thursday, February 04, 2016 6:14 AM GMT

@Clirex your's is probably the crappiest of them all when I extend on my point above. Output of yours: "1.6999999999999 1.5999999999999 1.4999999999999 1.3999999999999 1.2999999999999 1.1999999999999 1.0999999999999 0.99999999999994 0.89999999999994 0.79999999999994 0.69999999999994 0.59999999999993 0.49999999999993 0.39999999999993 0.29999999999993 0.19999999999993 0.099999999999927" #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
MisBloxy
#182977066Thursday, February 04, 2016 6:23 AM GMT

ik how to fix the .19999... problem. do this: tostring(time):sub(1,4)
cofunction
#182977084Thursday, February 04, 2016 6:24 AM GMT

^ wot about numbers that are below 10? That would get 0.00 #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
CWRA0444
#182977156Thursday, February 04, 2016 6:27 AM GMT

time = 24 h = Instance.new("Hint") h.Parent = workspace for i = 1, 24 do wait() h.Text = time time = time - 0.1 end just a siggy in its natural habitat

    of     2   
chevron_rightchevron_rightchevron_right