#Where's the best place to start learning how too script?
1 messages · Page 1 of 1 (latest)
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
I'd recommend BrawlDev's beginner scripting guide. After you should try watching the advanced scripting guide along with his GUI series.
oh then ill probably oick up from that i was on episode 5
ill try it
ill pick back up with it
@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()
This is good
@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?
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.
thanks
Brawl Dev
how
look
** You are now Level 4! **
Don't just watch the videos, do something for yourself with what you learned.