I wrote a code that damages you (removes 20 hp) everytime you step on it and i added a cooldown so you dont take damage 3 times while walking across it: Local KillBrick = script.Parent Local ts = false KillBrick.Touched:connect(function(hit) Local humanoid = hit.Parent:FundFirstChild("Humanoid") If ts == false then ts = true Print("you took damage") If humanoid then Humanoid:TakeDamage(20) task.wait(.35) ts = false If ts == false then Print("reset") End End End End)
@wiredtoken25 минут бұрын
print("hi") print("how are u man?") print("im doing very kewl today :)") print("wowie ok!!!") print("hey man... what's wrong with u?") print("uh... theres nothing wrong with me...") print("whos that behind yu") print("Nobody will believe you.") print("ur not real... u were never real...") print("You have to wake up.") print("Wake up. Wake up. Wake up. Wake up. Wake up.")
@AnoskagamaСағат бұрын
Bro Why is your res 3840x2160 😂
@BuwsDailyСағат бұрын
I am glad I learned C# before this. I am zooming trough this tutorial, but still its an amazing tutorial. Thank you for making this!
@22karatgolduserСағат бұрын
local baseplate = game.Workspace.Baseplate local lava = game.Workspace.lava local grass = game.Workspace.grass local water = game.Workspace.water local yellow = Color3.new(6,1,0) wait(5) water.Color = yellow grass.Color = yellow lava.Color = yellow baseplate.Transparency = 0 baseplate.Material = "LeafyGrass" baseplate.CastShadow = false wait(8) baseplate.Anchored = false
@thatonegostdudebro2 сағат бұрын
print("Hello!") print("How are you!") print("am good!") print("i love you!") print(".... wtf i don't like you") print("starts lisinting to wolf")
@ScarletAstoria2 сағат бұрын
print("Hello there!") print("Hi how are you today?") print("Im doing fantastic today!") print("want to be friends?") print("sure I would love to be your friend, Lets go get ice cream! ") print("I'm getting choclate") print("Thats nice I'll get the same thing too!") print("Yippie") print("I'm gonna go for now") print("Okay goodbye it was nice meeting you!")
@TheRealSirenGD3 сағат бұрын
local roof = game.Workspace.Roofing function colorchanges() wait(1) roof.BrickColor = BrickColor.new("Cyan") wait(1) roof.BrickColor = BrickColor.new("Camo") wait(1) roof.BrickColor = BrickColor.new("Really red") end colorchanges() colorchanges() colorchanges() colorchanges()
@SriVenugopal-h9i4 сағат бұрын
this may be a Dum question but i a function basically like a variable since it just shortens out lines of code and makes it into like one line right? so whats the difference ? can you like do more with a function?
@lucad.18354 сағат бұрын
tried to make the game by myself. It worked but it ended up a bit messy in the organisation department, eaven though its simpler local touchpart = script.Parent local barrier = workspace.game.barrier local partIsTouched = false touchpart.Touched:Connect(function(otherpart) if partIsTouched == false then partIsTouched = true barrier.CanCollide = false barrier.Transparency = 0.5 print(otherpart.Name) task.wait(12) partIsTouched = false barrier.CanCollide = true barrier.Transparency = 0 end end)
@NormalVoidSucks4 сағат бұрын
local newBornBaby = "iLikeDropKickingBabies" print(newBornBaby) print(newBornBaby) print(newBornBaby)
@shaggyiscool04 сағат бұрын
print("Hi, what's your name?") print("Dust Man.") print("that's a weird name.")
@sushishit1114 сағат бұрын
local x = 3 local y = 4 print(x + y) if x + y == 7 then print("Him") elseif x + y < 7 then print("Her") end
@hdrmvnzwvuligsvxfhglnvi4 сағат бұрын
Monkey how are u Im doin ok
@UnAffectGamin4 сағат бұрын
local x = 8 local y = 2 local function addition (nil1, nil2) local result = nil1 / nil2 return result end local printResult = addition(x, y) print(printResult)
@-XEONIC5 сағат бұрын
Completed the Basic Scripting Tutorial and Now the GUI one, Lets Go!
@markkolenski95025 сағат бұрын
You are talking VERY fast. Could slow down a touch.
@ColdWater-blox5 сағат бұрын
Random color generator local touchPart = game.Workspace.touchPart local partIsTouched = false touchPart.Touched:Connect(function(otherPart) if partIsTouched == false then partIsTouched = true touchPart.BrickColor = BrickColor.Random(3) task.wait(2) partIsTouched = false end end)
@vantolin01825 сағат бұрын
hehe local varInt = 0 local varString = "Ex Amount:" local varBool = true print("Ex Amount:",varInt) print(varString,0) print(varString,varInt) print("Is it true?") print(varBool)
@fortnitegamerguy694205 сағат бұрын
I’m finally learning Lua 😃 😃
@littylab41266 сағат бұрын
i made some questionable terrain in the terrain editor
@kevo3326 сағат бұрын
local baseplate = game.Workspace:WaitForChild("Baseplate") local function bpTransparency() baseplate.Transparency = 75 end for colorChange = 1, 5, 1 do baseplate.BrickColor = BrickColor.new("Grime") task.wait(2) baseplate.BrickColor = BrickColor.new("Dove blue") task.wait(2) baseplate.BrickColor = BrickColor.new("Gold") task.wait(2) end bpTransparency()
@vantolin01826 сағат бұрын
so this what i do print("Hello Bro!") print("Bro, u know c++?") print("yes, i know.") print("oke. btw u can press p then tab to uhhhhh autocorect(?) to print :D")
@mjfunforever39786 сағат бұрын
my killbrick is not working pls help
@MelikeyDuolingo-i2z6 сағат бұрын
lol it felt hard at first when u introduced it but u explained it so well! ty
@Gyaru_yet_so_Couquette6 сағат бұрын
local function additionFunction() local x=math.random (1,10) local y=math.random (1,10) local addition =x+y print (“x:”,x,”y:”,y,”Addition:”,addition) end
@petaparka9916 сағат бұрын
local function addition(number1, number2, number3) local result = number1 + number2 + number3 return result end local printResult = addition(8, 5, 6) print(printResult) local printResult = addition(3, 5, 6) print(printResult) local function subtraktion(number1 , number2) local result = number1 - number2 return result end local printresult = subtraktion(10, 5) print(printresult) local printresult = subtraktion(9, 3) print (printresult) local function dividition(number1 , number2) local result = (number1 / number2) return result end local printresult = dividition(5, 3) print (printresult) local printresult = dividition(8, 2) print (printresult) local function multiplication(number1 , number2) local result = number1 * number2 return result end local printresult = multiplication(4, 6) print (printresult) local printresult = multiplication(8, 2) print (printresult)
@Swaybjj7 сағат бұрын
Bro your my favorite YT, you helped me so much with scripting😀
@TheRealSirenGD7 сағат бұрын
print("Uh oh spaghettio") print("what happened?") print("I tripped and fell :(") print("oh im so sorry") print("wait nevermind no i didnt, i just thought i did") print("wait what") print("uhhh nothing") print("im scared") print("wait no im not, i just thought i was") print("you DARE use my own spells against me, potter?") print("yeah, i do dare") print("oh ok cool")
@harshkamalgangu7 сағат бұрын
Does the single and double quotations matter for the string code?
@lmaoboibruh69337 сағат бұрын
you and thedevking are great teachers
@JustEvanC7 сағат бұрын
Thanks so much for your help, I have tried other tutorials and failed to learn anything or very little. Anyways this is what I did in Studio! local TouchPart = game.Workspace.KillTest local partIsTouched = false TouchPart.Touched:Connect(function(otherPart) if partIsTouched == false then partIsTouched = true task.wait(1) TouchPart.BrickColor = BrickColor.new("Really red") task.wait(1) TouchPart.BrickColor = BrickColor.new("Bright blue") if partIsTouched == true then print("The function has been completed") end end end)
@2009Dleon7 сағат бұрын
thank you brawwl dev and all testers! Can't wait for next one! (:
@bellathewo-y7u7 сағат бұрын
The "4th Roblox Game Jam (Playing Your Games!)" refers to an event where participants create games on the Roblox platform within a limited time frame. After the game creation phase, players or judges test and play the games made during the jam. This event encourages creativity, collaboration, and community engagement among Roblox developers and players.
@valenzeYT7 сағат бұрын
bella the wolfs alt account |00|
@bellathewo-y7u6 сағат бұрын
@@valenzeYT *Bella raises an eyebrow at the mention of her alt account* "You know about my alt account? How do you know about that?"
@TheRealSirenGD7 сағат бұрын
I already knew how to do this, but i still did the action step by building a lil house :D
@Starboy-qc9fg7 сағат бұрын
i have a better chance to learn smt from high school...and im 11😭😭💀😭💀
@valenzeYT8 сағат бұрын
bro i love your channel you helped me learn so much tysm
@SHW_TpM8 сағат бұрын
this guy is good and its more interactive and I'm actually learning print("Bonjour") print('Im good and you') print("Thats nice have you tried the numbers yet") print("no im trying now just read below") print(false) print(false) print(10000) print(-100.49) print(1.4999)
@MaxwelleCat8 сағат бұрын
local Light1 = game.Workspace.LightGreen local Light2 = game.Workspace.LightYellow local Light3 = game.Workspace.LightRed for myCounter = 1, 10, 1 do Light3.Transparency = 0.8 Light1.Transparency = 0 task.wait(10) Light1.Transparency = 0.8 Light2.Transparency = 0 task.wait(3) Light2.Transparency = 0.8 Light3.Transparency = 0 task.wait(10) end
@SHW_TpM8 сағат бұрын
I'm also learning French, so I thought why not do some basic French introductions print ("Bonjour!") print ("Comme ca'va")
@Atrollge8 сағат бұрын
what if the part is in a model and that model that has the part in it is in another model
@FurieuxSoCool5 сағат бұрын
your gonna have to name the part you are trying to get to so if its a bunch of parts grouped as a model game.Workspace.Model.Part1.Transparency = 1 "model" is the grouped part and "part1" is the piece inside of the group
@SHW_TpM8 сағат бұрын
I'm planning on finishing and mastering the entire course in 1 month then create a game I've been planning on making for months, today I played with shapes made a staircase out of spheres that led to a simple tree made of a cylinder and 4 wedges then anchored it all and colored them and climbed to the top
@Conflict698 сағат бұрын
local function multiplication (num1, num2, num3) local man = num1 * num2 * num3 return man end local printMan = multiplication(2,9,10) print(printMan)
@Conflict698 сағат бұрын
dang that was confusing
@immyownmom84329 сағат бұрын
local square = game.Workspace.square local function changematerial() square.Material = "Carpet" wait(3) square.Material = "Brick" wait(3) square.Material = "Glass" wait(3) square.Material = "Rock" wait(3) square.Material = "Grass" wait(3) square.Material = "Wood" end changematerial()
@ItsTxc9 сағат бұрын
thanks to my python knowledge, these videos are not so hard for me. l gotta respect aswell that these videos quick , no nonsense, easy to understand and straight to the point. 5 stars bro
@Conflict699 сағат бұрын
local diddy = game.Workspace.Baseplate local function black() diddy.Material = Enum.Material.Neon wait(1) diddy.BrickColor = BrickColor.new("Really red") wait(1) diddy.Transparency = 0.5 wait(1) print("Welcome to Roblox!") wait(1) diddy.Material = Enum.Material.SmoothPlastic wait(1) diddy.BrickColor = BrickColor.new("Really black") wait(1) diddy.Transparency = 0 end black() black()
@LuminousEchoes129 сағат бұрын
23:41
@Marianoisepicfr9 сағат бұрын
local luckyBlock = game.Workspace.LuckyBlock while true do local redValue = math.random(0,255) local greenValue = math.random(0,255) local blueValue = math.random(0,255) local TransparencyValue = math.random(0.5,1) luckyBlock.Transparency = TransparencyValue luckyBlock.Color=Color3.fromRGB(redValue, greenValue, blueValue) task.wait(1) end