Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I know what to put in a function Argument????

Asked by 6 years ago
Edited 6 years ago

I have no clue, is it needed!! I NEED HELPPPPPPPPP!!! Please explain it to me!

0
which function dareveloper 9 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

A normal function like this

function example() ... end

you can also write it like but u still have to name your function

example = function() ... end

what goes in are variables that can only work in the function

function example(a,b,c) print(a,b,c) end

example(1,"hello",true) -- call function

and other functions like wait() which you have to put number in how long to wait

you write the function in roblox wiki or search for some and it tells you

Ad

Answer this question