How to Make a Game Addictive in 15 Minutes

  Рет қаралды 26,474

ByteBlox

ByteBlox

Күн бұрын

get my full Roblox Studio course here:
linktr.ee/Byte...
insta (i have cool pigeon photos): / subnautica_man
discord: / discord
wondered how to make a main menu in roblox studio? or how to create a shop which has working GUI? ive made lots of 2024 roblox scripting tutorials about all the different bits of roblox to give you some up-to-date information about all of its properties and events.
my goal is to simply give some insight on how to use the various features and instances roblox studio, and show you some fun stuff you can do with them. thanks for checking out this roblox scripting tutorial :)

Пікірлер: 207
@byteblox100
@byteblox100 3 ай бұрын
My official Roblox Studio course: bit.ly/ByteBloxCourse
@xJayPlayz
@xJayPlayz 3 ай бұрын
Course really came in handy! Still haven’t finished the course but you explain things very well
@creeperplayzz
@creeperplayzz 3 ай бұрын
50$ for smth i can search on the forums is a scam bro 😭
@TelePhrog
@TelePhrog 3 ай бұрын
I'm a baby and I can confirm, this worked flawlessly 👍
@bloxfy-bh7rz
@bloxfy-bh7rz 3 ай бұрын
Yes.
@unscripted-2
@unscripted-2 3 ай бұрын
Yes.
@Gladiator_123
@Gladiator_123 3 ай бұрын
I'm also a baby, this also worked👍
@Axoy2024
@Axoy2024 3 ай бұрын
I’m still in the womb, but I can also confirm this worked 👍
@SHOIOTERB
@SHOIOTERB 3 ай бұрын
@@Axoy2024 So you have a PC in there?
@BenjaminHoffman-is8wp
@BenjaminHoffman-is8wp 3 ай бұрын
I may have the most unoptimized elevator (I could have deleted the variables which would have made it very very unoptimized but i didn't want to do that, also I know I spelled thing wrong) anyway there are 2 scripts, one to open the elevator doors and one to lift the player up. local part = workspace["front of elavator"] local left = workspace["left door"] local right= workspace["right door"] part.Touched:Once(function(touchpart) local humanoid = touchpart.Parent:FindFirstChild("Humanoid") if humanoid then left.Position = Vector3.new(-9, 6.5, 15.5) right.Position = Vector3.new(1, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-10, 6.5, 15.5) right.Position = Vector3.new(2, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-11, 6.5, 15.5) right.Position = Vector3.new(3, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-12, 6.5, 15.5) right.Position = Vector3.new(4, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-13, 6.5, 15.5) right.Position = Vector3.new(5, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-14, 6.5, 15.5) right.Position = Vector3.new(6, 6.5, 15.5) task.wait(1.5) left.Position = Vector3.new(-13, 6.5, 15.5) right.Position = Vector3.new(5, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-12, 6.5, 15.5) right.Position = Vector3.new(4, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-11, 6.5, 15.5) right.Position = Vector3.new(3, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-10, 6.5, 15.5) right.Position = Vector3.new(2, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-9, 6.5, 15.5) right.Position = Vector3.new(1, 6.5, 15.5) task.wait(0.1) left.Position = Vector3.new(-8, 6.5, 15.5) right.Position = Vector3.new(0, 6.5, 15.5) end end) ________________ NEXT SCRIPT ________________ local part = workspace["elavator floor"] local top = workspace["top floor"] part.Touched:Once(function(touchpart) local humanoid = touchpart.Parent:FindFirstChild("Humanoid") if humanoid then task.wait(2) top.Transparency = 1 top.CanCollide = false part.Size = Vector3.new(18, 2, 14) task.wait(0.2) part.Size = Vector3.new(18, 3, 14) task.wait(0.2) part.Size = Vector3.new(18, 4, 14) task.wait(0.2) part.Size = Vector3.new(18, 6, 14) task.wait(0.2) part.Size = Vector3.new(18, 8, 14) task.wait(0.2) part.Size = Vector3.new(18, 10, 14) task.wait(0.2) part.Size = Vector3.new(18, 12, 14) task.wait(0.2) part.Size = Vector3.new(18, 14, 14) task.wait(0.2) part.Size = Vector3.new(18, 16, 14) task.wait(0.2) part.Size = Vector3.new(18, 18, 14) task.wait(0.2) part.Size = Vector3.new(18, 20, 14) task.wait(0.2) part.Size = Vector3.new(18, 22, 14) task.wait(0.2) part.Size = Vector3.new(18, 24, 14) task.wait(0.2) part.Size = Vector3.new(18, 26, 14) task.wait(0.2) part.Size = Vector3.new(18, 28, 14) task.wait(0.2) part.Size = Vector3.new(18, 30, 14) task.wait(0.2) part.Size = Vector3.new(18, 32, 14) task.wait(0.2) part.Size = Vector3.new(18, 34, 14) task.wait(0.2) part.Size = Vector3.new(18, 36, 14) task.wait(0.2) part.Size = Vector3.new(18, 38, 14) task.wait(0.2) part.Size = Vector3.new(18, 40, 14) task.wait(0.2) part.Size = Vector3.new(18, 42, 14) task.wait(0.2) part.Size = Vector3.new(18, 44, 14) task.wait(0.2) part.Size = Vector3.new(18, 46, 14) task.wait(0.2) part.Size = Vector3.new(18, 48, 14) task.wait(0.2) part.Size = Vector3.new(18, 50, 14) task.wait(0.2) part.Size = Vector3.new(18, 52, 14) task.wait(0.2) part.Size = Vector3.new(18, 54, 14) task.wait(0.2) part.Size = Vector3.new(18, 56, 14) task.wait(0.2) part.Size = Vector3.new(18, 58, 14) task.wait(0.2) part.Size = Vector3.new(18, 60, 14) task.wait(0.2) part.Size = Vector3.new(18, 62, 14) task.wait(0.2) part.Size = Vector3.new(18, 64, 14) task.wait(0.2) part.Size = Vector3.new(18, 66, 14) task.wait(0.2) part.Size = Vector3.new(18, 68, 14) task.wait(0.2) part.Size = Vector3.new(18, 70, 14) task.wait(0.2) part.Size = Vector3.new(18, 72, 14) task.wait(0.2) part.Size = Vector3.new(18, 74, 14) task.wait(0.2) part.Size = Vector3.new(18, 76, 14) task.wait(0.2) part.Size = Vector3.new(18, 78, 14) task.wait(0.2) part.Size = Vector3.new(18, 80, 14) task.wait(0.2) part.Size = Vector3.new(18, 82, 14) task.wait(0.2) part.Size = Vector3.new(18, 84, 14) top.Transparency = 0 top.CanCollide = true task.wait(0.5) part.Size = Vector3.new(18, 1, 14) end end)
@mgm1416
@mgm1416 3 ай бұрын
Interesting but you could use Tween Service to make it faster and less lines of code.
@DiamondFireball
@DiamondFireball Ай бұрын
​@@mgm1416That or AlignPosition
@punkineq
@punkineq Ай бұрын
@@mgm1416 the whole idea is that its unoptimised
@mgm1416
@mgm1416 Ай бұрын
@@punkineq I know that it is intentional, it was just an idea on how to make it more optimised.
@punkineq
@punkineq Ай бұрын
@@mgm1416 fair enough
@benenamen
@benenamen 3 ай бұрын
Did this work for anyone? For me it only creates two frames for the cash generation and my cash doesnt increase
@creeperplayzz
@creeperplayzz 3 ай бұрын
Day 67 of edging to your videos
@YJ_67
@YJ_67 3 ай бұрын
249 views in 20 minutes byteblox fell off
@_Baily
@_Baily 3 ай бұрын
His still a small channel bro chill out and his explaining it to developers or people on how things work so why would he fell off :v
@YJ_67
@YJ_67 3 ай бұрын
@@_Baily its a joke lol
@FinnardoDeCaprio
@FinnardoDeCaprio 2 ай бұрын
​@@_Baily51k is small? :v
@Scratchy__The_cat
@Scratchy__The_cat 3 ай бұрын
I watch your videos for fun I can perfectly make a game on roblox, but chose to instead watch these
@t0tallyarand0mguy-rbx
@t0tallyarand0mguy-rbx 26 күн бұрын
it's entertaining to watch him tho
@SlowRBXDev
@SlowRBXDev 3 ай бұрын
*”watching for fun”* dawg exposed me
@最も愚かな
@最も愚かな 3 ай бұрын
Me too 😭
@AntoineAnderson-gk2og
@AntoineAnderson-gk2og 2 ай бұрын
Frfr
@bruh....710
@bruh....710 Ай бұрын
me too.
@RaidenGamesStudioOffical
@RaidenGamesStudioOffical Ай бұрын
Same
@Elementening
@Elementening 3 ай бұрын
byteblox's dementia is getting worse, he is repeating sentences now.
@t0tallyarand0mguy-rbx
@t0tallyarand0mguy-rbx 26 күн бұрын
idk
@xJayPlayz
@xJayPlayz 3 ай бұрын
Definitely gonna save this video for later 😎 gonna come in handy
@Bunzo1241
@Bunzo1241 3 ай бұрын
Addictive? Imma need this.
@acctdevilubsername
@acctdevilubsername Ай бұрын
I’m rather very new to scripting and I’m trying to remember all of this in case it’s useful I sadly will probably forget all of this
@maciezez
@maciezez 3 ай бұрын
Fun fact: You cannot get rich from comments 😢
@GmetrixTutorialEsp
@GmetrixTutorialEsp 3 ай бұрын
1 like is one puppy we save.
@FunniMafaka
@FunniMafaka 3 ай бұрын
@@GmetrixTutorialEsp Ohio skibidi rizz
@skzkxjdnzjxnxndn
@skzkxjdnzjxnxndn 3 ай бұрын
@@FunniMafaka real
@CheezyGaming0910
@CheezyGaming0910 3 ай бұрын
Im also trying to make an Incremental game and what I do is I add all the number values to the player (instead of the upgrade values like cost, bought etc.) so I can save them and but i never had the idea of using attributes, but I dont think I will use it because its confusing for me to use attributes. Now I feel stupid :)
@CheezyGaming0910
@CheezyGaming0910 3 ай бұрын
I JUST REALIZED IF I DONT PUT THE VALUES IN THE PLAYER IT WILL BE FOR THE WHOLE SERVER.
@ReeeMonke
@ReeeMonke 3 ай бұрын
Im also making an incremental :D
@CheezyGaming0910
@CheezyGaming0910 3 ай бұрын
@@ReeeMonke Thats cool! If you agree we can work together
@McDoubleMortem
@McDoubleMortem 2 ай бұрын
@@CheezyGaming0910​ @ReeeMonke Be Friends and work together
@McDoubleMortem
@McDoubleMortem 2 ай бұрын
@@ReeeMonke @CheezyGaming0910 Be Friends and work together
@8tan200
@8tan200 3 ай бұрын
your videos are so good and actually making me learn stuff, too bad i have to pay forna course
@kyle2805
@kyle2805 3 ай бұрын
This is crazy timing this popped up on my recommended as soon as I joined an incremental game
@Fir35ton3
@Fir35ton3 3 ай бұрын
20 views in 1 minute, bros compleated the human verification
@jinxed-truly
@jinxed-truly 3 ай бұрын
i really needed this, thx!
@urnana1887
@urnana1887 3 ай бұрын
i wanna see you play a horror game
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 3 ай бұрын
brother, oiled up already.
@LiterallyAureus
@LiterallyAureus 3 ай бұрын
So stimulating
@pxlbit
@pxlbit 3 ай бұрын
Im not stupid 😭😭🥺🥺😔😔😔 (i may be stupid)
@meep_poggerson
@meep_poggerson 3 ай бұрын
there is a property to make the scrolling frame automatically change the scrolling based on how much is in it.
@yusfkhayyat
@yusfkhayyat 3 ай бұрын
Oh. I didn't know that
@tiktokwhoavicky
@tiktokwhoavicky 3 ай бұрын
how bc i want to do that
@meep_poggerson
@meep_poggerson 3 ай бұрын
@@tiktokwhoavicky under the scrolling section of the properties of the scrolling frame, set the AutomaticCanvasSize to Y (unless horizontal, of course) and probably also set CanvasSize to 0,0,0,0
@tiktokwhoavicky
@tiktokwhoavicky 3 ай бұрын
@@meep_poggerson omg tysm
@meep_poggerson
@meep_poggerson 3 ай бұрын
@@tiktokwhoavicky np
@Felipefilip
@Felipefilip 3 ай бұрын
instruction unclear: im not addicted
@dud2709
@dud2709 2 ай бұрын
could you put out a world download or something like that for this? i followed along and checked it all so many times but it never worked 😭😭
@BloxBuilder100
@BloxBuilder100 3 ай бұрын
Fun Fact: if you double click a comment it likes it
@Someoneelse10
@Someoneelse10 3 ай бұрын
Neat
@NickRBLX17
@NickRBLX17 3 ай бұрын
These comments are so stupid
@iGuessItsAzure
@iGuessItsAzure 3 ай бұрын
SHADDUP! We know😁
@HPAN69
@HPAN69 3 ай бұрын
I don't ​@@iGuessItsAzure
@gamingwithrandomgaming
@gamingwithrandomgaming 3 ай бұрын
Shut the front door 😂
@Dadawen69
@Dadawen69 3 ай бұрын
Just add gambling. 99% of people quit before they win big
@GamesFromJ
@GamesFromJ 3 ай бұрын
im vewwy stupid :)
@NowNormal
@NowNormal 3 ай бұрын
If you double click on the comment below, it likes it! ^-^
@skzkxjdnzjxnxndn
@skzkxjdnzjxnxndn 3 ай бұрын
Aaaaand it's all over the screen!😅😛 Dattebayo!🥳🥳🥳😁😁😁
@YEWCHENGYINMoe
@YEWCHENGYINMoe 3 ай бұрын
I just click this dudes vids 2h ago
@Entification
@Entification Ай бұрын
Now I am going to make chezburger clicker simulator
@babykingfr
@babykingfr 3 ай бұрын
you called me out when you said watching for fun haha
@jkkienzle1356
@jkkienzle1356 3 ай бұрын
I didn't even realize this was 9 min ago
@UkdrillsXE1R
@UkdrillsXE1R 3 ай бұрын
yo this is really smart and great
@mathiashansen2424
@mathiashansen2424 2 ай бұрын
Could'nt you just have made a leaderstats value instead of the attribute, for the cash value?
@i_am_the_laxative
@i_am_the_laxative 2 ай бұрын
Couldn’t *
@RyanEXElol
@RyanEXElol 3 ай бұрын
Layouts work with normal frames too
@SUP_was_here
@SUP_was_here Ай бұрын
What about ppl that dont know coding
@demolished_duck
@demolished_duck 3 ай бұрын
#1 tip ; add Gambling like pet simulator so people get addicted to playing and spending money in your game #2 tip: add skibidi toilet so children play for hours (Joke advice don't do this lol)
@boreddragons
@boreddragons 3 ай бұрын
Imagine someone actually uses the tips without reading (joke advice don’t do this lol) and they actually add this stuff into their game😭💀
@benjamin0194
@benjamin0194 3 ай бұрын
that's it! a skibidi pet simulator!!!!! (this is completely satire as the idea is equivalent to lobotomizing every children in the world and making them work for your benefits)
@DictatePM
@DictatePM 3 ай бұрын
why people associate gambling with pet sim? like yeah of course pet sim has a lot of gambling, but what about sols rng, that game doesnt get the same hate as pet sim, and it is arguably worse
@demolished_duck
@demolished_duck 3 ай бұрын
@@DictatePM you don't waste money in it. u don't scam children
@DictatePM
@DictatePM 3 ай бұрын
@@demolished_duck it still uses a LOT of phsycology insanely addicting gambling techniques
@nonproductiveproduction
@nonproductiveproduction 3 ай бұрын
Nahh, ByteBlox tycoon arc💀
@ItsTheHaCo
@ItsTheHaCo 2 ай бұрын
Me no stupid! >:(
@LaminatRbx
@LaminatRbx 2 ай бұрын
I just discovered UI Padding after almost 2 years of roblox developing.
@OfficalChannel_R1
@OfficalChannel_R1 3 ай бұрын
I need this! Thank you!
@vciousbeE
@vciousbeE 3 ай бұрын
we slapping my cheek sand pensqting while joking it for u bbg
@TwoFanBfdi
@TwoFanBfdi Ай бұрын
TF?
@zerdgeofficial
@zerdgeofficial 3 ай бұрын
Day 1 of asking byteblox of making a video of MessagingService
@eckso4237
@eckso4237 3 ай бұрын
can I get 2 mugs of diet water to go
@i_am_the_laxative
@i_am_the_laxative 2 ай бұрын
Only if it’s vegan keto
@DanielGamer-dr7dt
@DanielGamer-dr7dt 3 ай бұрын
Thank you
@Harmless_Mix
@Harmless_Mix 3 ай бұрын
Hi I was wondering how I would make the timeposition on a sound part constantly update because whenever I try to make a when timeposition = 45 do myemmiter:emit(100) it dosent work and whenever I check it isn’t updating
@ScriptMania7
@ScriptMania7 2 ай бұрын
Put it in a loop
@JadenTheAnimator
@JadenTheAnimator 3 ай бұрын
stopping little boys from saying first
@NebulaAccount
@NebulaAccount 3 ай бұрын
you're just trynna say "first" without saying it, and you failed, you're third
@Beaniscool
@Beaniscool 3 ай бұрын
You are that little boy
@Beaniscool
@Beaniscool 3 ай бұрын
And you're not even first
@ceilingfan9659
@ceilingfan9659 3 ай бұрын
The reason people say “first” is because they wanna feel special. You’re doing the exact same thing but trying to play it off.
@NebulaAccount
@NebulaAccount 3 ай бұрын
@@ceilingfan9659 exactly
@zefrozo5894
@zefrozo5894 Ай бұрын
somehow i failed ._.
@saul_goodman-v5f
@saul_goodman-v5f Ай бұрын
what? are you a newborn. SKILL ISSUE
@polski_beluga
@polski_beluga 3 ай бұрын
to make game addictive is add to it gambling
@mrchugbug9735
@mrchugbug9735 3 ай бұрын
These videos never fail to make me addicted
@Eddin973
@Eddin973 3 ай бұрын
Can you make a tutorial on how to make a Roblox game like project zomboid
@Lord_raichu6369
@Lord_raichu6369 3 ай бұрын
Do it yourself
@Eddin973
@Eddin973 3 ай бұрын
@@Lord_raichu6369 sorry I just wanted to learn how to make a game like project zomboid because there isn’t any other tutorials
@zxkver
@zxkver 3 ай бұрын
let's go gambling!
@Editcooker11
@Editcooker11 3 ай бұрын
20th comment
@CETggg01
@CETggg01 3 ай бұрын
I FIRST TO COMMENT LAST
@skedshowcaser5034
@skedshowcaser5034 3 ай бұрын
uhhh i dont think that will work, bcuz any exploiter could just change attribute, for example: attribute cost can be changed to negative number and game will think that it is negative so instead of decreasing money it might just give more money
@StarryArrii
@StarryArrii 3 ай бұрын
exploiters cannot change server-sided data
@realZerin
@realZerin 3 ай бұрын
​@@StarryArriithe entire system is client sided, easily exploitable.
@StarryArrii
@StarryArrii 3 ай бұрын
@@realZerin oh i didn't watch the video I just assumed nobody would be stupid enough to put the whole system on the client
@chibisayori20
@chibisayori20 3 ай бұрын
​@@StarryArrii i think it's to test stuff in Studio but you shouldn't blindy copy a tutorial unless you want to get your game moderated and your account banned
@skedshowcaser5034
@skedshowcaser5034 3 ай бұрын
@@StarryArrii what if they would do that on local side?
@JeLeff.
@JeLeff. 3 ай бұрын
YOU'RE WRONG, the first tycoon ever created was in 2007 or 2008
@Envixity444
@Envixity444 3 ай бұрын
make a video on how to make a fighting game.
@aleksi789
@aleksi789 3 ай бұрын
free models (thats what battlegrounds games do)
@Envixity444
@Envixity444 3 ай бұрын
@@aleksi789 tsbg?
@XDxbox420
@XDxbox420 3 ай бұрын
BYTEBLOX SHAKE IT JUST SHAKE IT OHHH 🥵🥵🥵🥵🥵🥵🥵🥵🥵🥵
@EATBProder
@EATBProder 3 ай бұрын
?
@DictatePM
@DictatePM 3 ай бұрын
​@@EATBProderplease never try to search what that means, you will live a happier life :)
@Arikusx
@Arikusx 3 ай бұрын
Your comment history on this channel is wild 🫠
@ok-__
@ok-__ 3 ай бұрын
THIS GUYS RECENT COMMENTD GOT ME DEAD 💀💀💀💀
@FacelessTheAnimatorLOL
@FacelessTheAnimatorLOL 3 ай бұрын
Erm, watesigma
@systemplayz3991
@systemplayz3991 Ай бұрын
ah yes my baby will type Parent.part.GetGameService or some sh-
The 1-Step Process of Fixing a Trash Game
15:46
ByteBlox
Рет қаралды 17 М.
How Are Minimaps Actually Programmed?
15:12
ByteBlox
Рет қаралды 20 М.
Nastya and balloon challenge
00:23
Nastya
Рет қаралды 68 МЛН
АЗАРТНИК 4 |СЕЗОН 4 Серия
36:20
Inter Production
Рет қаралды 491 М.
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 57 МЛН
отомстил?
00:56
История одного вокалиста
Рет қаралды 7 МЛН
The NEW Creaking Mob is so funny.
5:02
Phoenix SC
Рет қаралды 867 М.
If you’re a new Roblox dev, watch this
35:23
ByteBlox
Рет қаралды 25 М.
Classic Roblox RPG | Devlog #5 - BIG UPDATE!
7:18
galaxhex
Рет қаралды 10 М.
Optimizing my Game so it Runs on a Potato
19:02
Blargis
Рет қаралды 593 М.
The biggest lie in video games
15:18
AIA
Рет қаралды 1,9 МЛН
3 Most Powerful Fun Hacks In Game Design
6:29
Jonas Tyroller
Рет қаралды 117 М.
I Learned How to SCRIPT in 7 Days | Roblox
11:00
Simjet
Рет қаралды 106 М.
Making a Fake Multiplayer .io Game
11:03
Gambit
Рет қаралды 141 М.
What Makes Games FUN (Psychology in Gaming)
7:01
My GameDev Pal
Рет қаралды 174 М.
Why I Hate Roblox Simulators
16:42
ByteBlox
Рет қаралды 62 М.
Nastya and balloon challenge
00:23
Nastya
Рет қаралды 68 МЛН