Random numbers: Revision history

From ROBLOX Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 December 2024

  • curprev 23:4523:45, 10 December 2024 PRG talk contribs 710 bytes +710 Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == This tutorial covers random numbers. == Random number generator == The random number generator in Roblox generates random numbers. * Start Roblox Studio. * Insert > Object > Script. * Copy and Paste the following script into the newly created Script Object: <pre> for i = 1, 10 do -- this will create a loop which will run 10 times print(math.random(1,100)) -- this will print random number from 1 to 100 wait(1) -- t..."