#Where's the best place to start learning how too script?

1 messages · Page 1 of 1 (latest)

magic thistle
#

Wheres the best place the Dev Forum? and I wanna start from easist scripts to hardest. Maybe youtube too? IDK

acoustic forge
#

The way I learned was from a channel named. Brawl Dev.

#

Not only does he have a basic tutorial series, but an advanced and GUI series

#

And that mixed with practice makes the best dev

#

And when u don’t know what to do or when you’re stuck, use AI

#

not for scripting, but for learning and building

#

And when in doubt, before using AI, use the dev forum

#

That helps

marble grove
#

Most Professional Developers also recommend looking at the Docs

karmic scaffold
#

I'd recommend BrawlDev's beginner scripting guide. After you should try watching the advanced scripting guide along with his GUI series.

magic thistle
magic thistle
magic thistle
#

@acoustic forge @marble grove @karmic scaffold

what ive made so far


local redVariable = game.Workspace.red
local blueVariable = game.Workspace.blue
local greenVariable = game.Workspace.green
local spawnVariable = game.Workspace.SpawnLocation

local function theColors()
redVariable.Transparency = 0.10
wait(1)
redVariable.Transparency = 0.20
wait(1)
redVariable.Transparency = 0.30
wait(1)
redVariable.Transparency = 0.40
wait(1)
redVariable.Transparency = 0.50
wait(1)
redVariable.Transparency = 0.60
wait(1)
redVariable.Transparency = 0.70
wait(1)
redVariable.Transparency = 0.80
wait(1)
redVariable.Transparency = 0.90
wait(1)
redVariable.Transparency = 1

blueVariable.CanCollide = true
wait(1)
blueVariable.CanCollide = false
wait(1)
blueVariable.CanCollide = true
wait(1)
blueVariable.CanCollide = false

greenVariable.Reflectance = 0.10
wait(1)
greenVariable.Reflectance = 0.20
wait(1)
greenVariable.Reflectance = 0.30
wait(1)
greenVariable.Reflectance = 0.40
wait(1)
greenVariable.Reflectance = 0.50
wait(1)
greenVariable.Reflectance = 0.60
wait(1)
greenVariable.Reflectance = 0.70
wait(1)
greenVariable.Reflectance = 0.80
wait(1)
greenVariable.Reflectance = 0.90
wait(1)
greenVariable.Reflectance = 1

end

theColors()
theColors()
theColors()
theColors()
theColors()

marble grove
#

@magic thistle

#

Never Give Up, You Can Overcome Any Challenge You Face, No Wrong Is Unrightable

#

Now While You Are Learning Can You Tell Me How You Learned? What Methods Did You Use?

acoustic forge
#

This is a very good script, however, I have a challenge that still uses the same logic:

in the function, instead of repeating -
redVariable.Transparency = 0.10
wait(1) ...
over and over agin, use for loops.

marble grove
near zincBOT
#

studio** You are now Level 4! **studio

marble grove
#

Don't just watch the videos, do something for yourself with what you learned.