Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox random number

local number = math.random(1, 10)
# change 1 to be the smallest possible number
# change 10 to the be the biggest possible number
Comment

roblox how to use math.random

local randomNumber = math.random(0, NUMBERLIMIT) -- Replace NUMBERLIMIT with a random number
print(randomNumber)
local string = {
"Mom",
"Dad"
}
local randomString = string(math.random(0, #string))
print(randomString)
Comment

PREVIOUS NEXT
Code Example
Lua :: Lua numbers 
Lua :: lua get time 
Lua :: loop roblox studio 
Lua :: vector2 roblox 
Lua :: lua string split 
Lua :: lua tables 
Lua :: get index of value in table lua 
Lua :: Lua How to check what index belongs to value 
Lua :: What is The Color changing script for luaa 
Lua :: finding humanoid roblox. part 
Lua :: for loop in robox 
Lua :: how to format a number into hh:mm:ss in lua 
Lua :: lua scp 914 card script 
Lua :: lua hash keys 
Lua :: lua run string as code 
Matlab :: matlab title figure 
Matlab :: dat file in matlab 
Matlab :: octave clear figure 
Matlab :: save table matlab 
Basic :: basic authentication bash 
Basic :: cmo ler o dado de um cliente ftp usando vbnet 
Elixir :: elixir enum each 
Elixir :: extract changeset error elixir 
Scala :: scala 
Actionscript :: move records from table to another using knex migration 
Excel :: google sheets countif current month 
Perl :: perl while loop 
Pascal :: pascal pause 
Powershell :: powershell -executionpolicy bypass -file 
Clojure :: how to do operations inside a list clojure 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =