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

Begginer Basic Scripting? [closed]

Asked by 8 years ago

Basic Tips for me i'm new and I need like something to work with to get to know scripting like a easy script I can do to get me started does anyone have anything for me?

0
This question seems to pop up about every few days recently. Here's a link to a question similar to yours that has an answer, https://scriptinghelpers.org/questions/28975/how-to-start-scripting User#11440 120 — 8y

Closed as Not Constructive by BlueTaslem

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

2 answers

Log in to vote
0
Answered by 8 years ago

Well I've used this answer before, but I'm going to copy/paste it here.

Have a goal.

Before you start scripting, you have to know what your going to make. But, maybe you don't know how? Looking up some YouTube tutorials or looking at the Wiki will definitely help. If you cant find anything, try to come up with something you know you can do, and a long the way, you might even learn how to do your original goal.

Define your variables

Once you know your goal, you might want to define any variables you will need along the way. Don't know what variables are? Go to http://wiki.roblox.com/index.php?title=Variable . Defining variables will help you along the way to make your script as short as possible.

Write a few functions

Got your variables? You ready to start the main part of your script! Functions are next. Don't know what functions are? Go to http://wiki.roblox.com/index.php?title=Function. Functions are mostly important for when you have longer scripts, but when making a kill brick, you only end up using one of them.

Put your script together

Your at the final part of your script; putting it together! Now that you've got all your functions and variables wirtten out, all you have to do is call the functions you've made (by typing "FunctionNameHere(), in the order you want them to happen. And that's basically it! You've written a script! Congratulations!

0
you copied that from another answer of yours lol theCJarmy7 1293 — 8y
Ad
Log in to vote
0
Answered by 8 years ago

I recommend visiting the Roblox Wiki and checking out the Roblox Youtube Scripting Classes. There is also a few Learn To Script games on Roblox created by different users that are targeted at different skill levels.

iFireLazer:

"Have a goal.

Before you start scripting, you have to know what your going to make. But, maybe you don't know how? Looking up some YouTube tutorials or looking at the Wiki will definitely help. If you cant find anything, try to come up with something you know you can do, and a long the way, you might even learn how to do your original goal.

Define your variables

Once you know your goal, you might want to define any variables you will need along the way. Don't know what variables are? Go to http://wiki.roblox.com/index.php?title=Variable . Defining variables will help you along the way to make your script as short as possible.

Write a few functions

Got your variables? You ready to start the main part of your script! Functions are next. Don't know what functions are? Go to http://wiki.roblox.com/index.php?title=Function. Functions are mostly important for when you have longer scripts, but when making a kill brick, you only end up using one of them.

Put your script together

Your at the final part of your script; putting it together! Now that you've got all your functions and variables wirtten out, all you have to do is call the functions you've made (by typing "FunctionNameHere(), in the order you want them to happen. And that's basically it! You've written a script! Congratulations!"

This is all good advice however it does not actually help you learn anything so I recommend that you keep the advice from both of us in mind.