Main public logs

From ROBLOX Wiki
Jump to navigationJump to search

Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 23:45, 10 December 2024 PRG talk contribs created page Random numbers (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...")