Hi, im wondering a good way to learn scripting as im only watching alvinblox and thedevking playlists and im worried i wont learn all the advanced stuff as beginner
2 Likes
The official resource that contains all things Roblox scripting/Lua related. Use this if you ever need help.
I know a lot of other people on the dev forum also had this question. You might want to search them and see the replies.
1 Like
The other replies link to other posts, here’s how I would suggest doing things.
- Start with a simple goal, for example, making a cube that grows larger each time you click on it.
- Identify the types of things that you will need to create it. Click Detector, LocalScript/Script, Part.Size
2a. Ask on DevForum with very specific questions of ‘how do I track when a user clicks on a part’ if you don’t know what you are looking for.
2b. Look inside pre-existing scripts that may have part of what you are looking for (door that opens when you click on it) - Look up the API (
ClickDetector.MouseClick:Connect(function() end)
) - Write your basic script.
4a. Devforum if you still can’t figure it out. - Once it works, try adding more stuff to it: Cube will have an animation when it grows.
Each time you solve a problem, you will learn more.
2 Likes