Build a Disappearing Platform Brick (Roblox Studio Tutorial for New Beginners Series) (N031)

preview_player
Показать описание
In this Roblox scripting scripts tutorial, you will learn how to make a disappearing platform brick in Roblox. You will learn how to change the part's transparency property (Transparency) to make the part not visible. You will learn that you would also need to turn off the can collide property (CanCollide) in order to make your part completely gone from your game.

By PrizeCP Roblox Studio Tutorial for New Beginners Series

About our channel...
We offer 100% Free Online Courses, where kids and adults of all ages can learn to build your own Roblox games quickly and easily. Follow step by step video instructions in our PrizeCP Roblox Studio Tutorial for New Beginners Series playlist. Our lessons will prepare you with valuable computer programming skills needed, possibly for a brighter future career in the software engineering field. It's never too early or too late to develop your software development skills. The programming language that we use in Roblox is Lua. Lua is a simple programming language that is good for kids and beginners to learn. And best of all, you will be learning it while having fun with building your own Roblox games and playing with friends online.

Related materials:

You can check out the different playlists below to see which one suits you best.

Have questions? Leave a comment below.

Digital media partner(s):

#roblox #robloxdev #robloxtutorial #robloxscripts #robloxscripting #robloxbuild #programming #computerProgramming #Script #Scripting
Рекомендации по теме
Комментарии
Автор

For randomness instead of a normal number do math.random(x, y)
(where x is a number you choose and y is a second number you choose)
this will make the platform appear and disappear randomly, and when combined with several makes all platforms desync (not be synchronized) which could add additional difficulty or fun to your game!

bananatom
Автор

local part = script.parent

while true do
wait (8)
part.transparency = 1
part.cancollide = false

wait (8)
part.transparency = 0
part.cancollide = true
end

HeroKekMc
Автор

do u think u could leave the script in the comments?

EGgYYed
Автор

it goesa away but it doesn't come back

bustip
Автор

It says ' transparency is not a valid member of part workspace.part

Racer_YT