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

Where did you learn to script?

Asked by
Curtar 0
8 years ago

I want to learn to script but I don't know where to learn suggest on what website I should learn on.

4 answers

Log in to vote
1
Answered by
ImfaoXD 158
8 years ago

If you want to learn how to script, then here is the link to it: http://wiki.roblox.com/index.php/Tutorials

Ad
Log in to vote
0
Answered by 8 years ago

Hello. If you want to learn to script, I have a good thing for you. Go on the profile of this user and search for Learn To Script in his models, its name is sdfgw.

P.S: If you want to make a "onTouched" event, Dont forget to add

script.Parent.Touched:connect(function name here)

at the end

It should look like

function onTouched(hit)
    script.Parent.Transparency = 1
    wait(1)
    script.Parent.Transparency = 0
end

script.Parent.Touched:connect(onTouched)
Log in to vote
0
Answered by 8 years ago

These 2 sites will help you a LOT:

http://wiki.roblox.com/index.php/Scripting_Book

http://www.lua.org/pil/1.html

Log in to vote
-1
Answered by
Vezious 310 Moderation Voter
8 years ago

You first want to learn the basic events. Like

Player Clicked

Player Touched

Value Changed

Player Left

Player Joined You also want to learn

If

elseif

else

and the difference between end and end)

Then You want to learn how to start a function. Then you can make your own scripts.

Getting better takes mastering what you have learned, then trying new things.

Answer this question