The Ultimate Guide to Roblox Lua Scripting for Beginners

preview_player
Показать описание
Hey there, fellow developers! It's me, Towelie, your coding buddy, and today I've got another fun-filled, graphical Roblox Lua scripting video just for you. You know the drill: we'll explore essential techniques and tips that will boost your game design skills to the next level, all with some sweet background tunes. No talking here, just good vibes and great visuals! 🌟

Whether you're a seasoned programmer or just starting out, I've got your back. I'm here to help you master the ins and outs of Roblox development, Lua scripting, game mechanics, animations, visual effects, and so much more, in a cool and relaxing atmosphere. We'll learn together, one graphical short at a time.

In each video, you'll discover key topics like:
🔧 Roblox Studio and Lua basics
🎮 Game design and development techniques
🌐 Multiplayer game creation
🎨 Custom assets and environments
💥 Advanced scripting for immersive gameplay
🏆 Tips and tricks for success in the Roblox community

So, sit back, relax, and enjoy the music as we dive into the world of Roblox Lua together. Don't forget to hit the like button if you enjoy the video, and subscribe to Developer Towelie for more amazing, graphical Roblox Lua content.

Let's embark on this groovy journey and unlock your full programming potential! Remember, your buddy Towelie is always here to guide you along the way. Happy coding, friends, and don't forget to bring a towel! 😄👍
Рекомендации по теме
Комментарии
Автор

local part = script.Parent

function killBrick(touched)
if not then
return
end

local humanoid = touched.Parent.Humanoid
humanoid.Health = humanoid.Health - 100
end


Smurfis
Автор

Yo i actually planning a game call project redriver where you are a scientist creating sorta thing but the the facility has been attacked you have to escape before the facility blown up.

Info: the project redriver is a game of single player although some multiplayer were originally supposed to be a RP game but that was scrapped the sequel to the project redriver is the attack of the STA where the protagonist ryan, get his suit ( C.E.R.S MK-2) and heads to the reactor. Then a catastrophic steam explosion cause the main reactor to go uncontrollably, opening a rift between earth and the lost world (ST-5)

I will create this on august 22

Lightwork-r
Автор

I dont know the lava one, but the dissapearing platform is

Local platform = script.Parent

local function dissapear()
platform.CanCollide = false
platform.Transparency = 1
end

local function appear()
platform.CanCollide = true
platform.Transparency = 0
end

while true do
task.wait(3)
dissapear()
task.wait(3)
appear()
end

tell me if i did anything wrong

Virtus
Автор

local part = script.Parent

local function disappear()
part.Transparancy = 1
part.CanTouch = false
part.CanCollide = true
end


i-tdlx
Автор

That's impressive my first time was making a kill brick that didn't work XDDD

TownyLancer
Автор

Lua isn't that's hard you can do it gl

Floontop
Автор

For some reason in lua learning in mobile theres no FUCKING QUESTS AND LESSON WHATS EVEN THE POINT I HATE THAT FUCKING GAME

stillprxtty
Автор

Bro what as a new spcripter I am at like day 4 and I only can do properties and a little bit of fucntion (I can ofc do printing I am tryna learn to do things at touch)

ProEdits
Автор

As a roblox developer, i would use tweenservice like this for this script: local TS =

local platform = script.Parent

local TweenInfo = TweenInfo.new(1)

local properties = {Transparency = 1}

local tweenPlayer = TS:Create(platform, TweenInfo, properties)


tweenPlayer:Play()
end

swagman
Автор

Hey, I’m also a developer. This is my first day of scripting. Can you tell me how you made it fade like that?

Average_Roblox_Furry