How to Make a Game Addictive in 15 Minutes

  Рет қаралды 11,786

ByteBlox

ByteBlox

9 күн бұрын

My official Roblox Studio course:
bit.ly/ByteBloxCourse
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 :)

Пікірлер: 163
@byteblox100
@byteblox100 7 күн бұрын
My official Roblox Studio course: bit.ly/ByteBloxCourse
@xJayPlayz
@xJayPlayz 7 күн бұрын
Course really came in handy! Still haven’t finished the course but you explain things very well
@creeperplayzz
@creeperplayzz 7 күн бұрын
50$ for smth i can search on the forums is a scam bro 😭
@froggi635
@froggi635 7 күн бұрын
I'm a baby and I can confirm, this worked flawlessly 👍
@bloxfy-bh7rz
@bloxfy-bh7rz 7 күн бұрын
Yes.
@unscripted-2
@unscripted-2 7 күн бұрын
Yes.
@Gladiator_123
@Gladiator_123 7 күн бұрын
I'm also a baby, this also worked👍
@Axoy2024
@Axoy2024 7 күн бұрын
I’m still in the womb, but I can also confirm this worked 👍
@SHOIOTERB
@SHOIOTERB 6 күн бұрын
@@Axoy2024 So you have a PC in there?
@yoimabnqo6
@yoimabnqo6 7 күн бұрын
*”watching for fun”* dawg exposed me
@Grandma_Ednaa
@Grandma_Ednaa 4 күн бұрын
Me too 😭
@Scratchy__The_cat
@Scratchy__The_cat 7 күн бұрын
I watch your videos for fun I can perfectly make a game on roblox, but chose to instead watch these
@Bunzo1241
@Bunzo1241 7 күн бұрын
Addictive? Imma need this.
@CheezyGaming0910
@CheezyGaming0910 7 күн бұрын
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 6 күн бұрын
I JUST REALIZED IF I DONT PUT THE VALUES IN THE PLAYER IT WILL BE FOR THE WHOLE SERVER.
@ReeeMonke
@ReeeMonke 4 күн бұрын
Im also making an incremental :D
@CheezyGaming0910
@CheezyGaming0910 4 күн бұрын
@@ReeeMonke Thats cool! If you agree we can work together
@jinxed-truly
@jinxed-truly 7 күн бұрын
i really needed this, thx!
@kyle2805
@kyle2805 7 күн бұрын
This is crazy timing this popped up on my recommended as soon as I joined an incremental game
@OfficalChannel_R1
@OfficalChannel_R1 7 күн бұрын
I need this! Thank you!
@BenjaminHoffman-is8wp
@BenjaminHoffman-is8wp 6 күн бұрын
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 5 күн бұрын
Interesting but you could use Tween Service to make it faster and less lines of code.
@xJayPlayz
@xJayPlayz 7 күн бұрын
Definitely gonna save this video for later 😎 gonna come in handy
@8tan200
@8tan200 7 күн бұрын
your videos are so good and actually making me learn stuff, too bad i have to pay forna course
@Elementening
@Elementening 7 күн бұрын
byteblox's dementia is getting worse, he is repeating sentences now.
@LiterallyAureus
@LiterallyAureus 7 күн бұрын
So stimulating
@mrchugbug9735
@mrchugbug9735 4 күн бұрын
These videos never fail to make me addicted
@UkdrillsXE1R
@UkdrillsXE1R 7 күн бұрын
yo this is really smart and great
@DanielGamer-dr7dt
@DanielGamer-dr7dt 7 күн бұрын
Thank you
@Harmless_Mix
@Harmless_Mix 5 күн бұрын
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
@Felipefilip
@Felipefilip 7 күн бұрын
instruction unclear: im not addicted
@nonproductiveproduction
@nonproductiveproduction 7 күн бұрын
Nahh, ByteBlox tycoon arc💀
@babykingfr
@babykingfr 7 күн бұрын
you called me out when you said watching for fun haha
@urnana1887
@urnana1887 7 күн бұрын
i wanna see you play a horror game
@The.Red.Antagonist
@The.Red.Antagonist 7 күн бұрын
we slapping my cheek sand pensqting while joking it for u bbg
@RyanEXElol
@RyanEXElol 7 күн бұрын
Layouts work with normal frames too
@skzkxjdnzjxnxndn
@skzkxjdnzjxnxndn 4 күн бұрын
Aaaaand it's all over the screen!😅😛 Dattebayo!🥳🥳🥳😁😁😁
@Fir35ton3
@Fir35ton3 7 күн бұрын
20 views in 1 minute, bros compleated the human verification
@benenamen
@benenamen 4 күн бұрын
Did this work for anyone? For me it only creates two frames for the cash generation and my cash doesnt increase
@meep_poggerson
@meep_poggerson 7 күн бұрын
there is a property to make the scrolling frame automatically change the scrolling based on how much is in it.
@yusfkhayyat
@yusfkhayyat 6 күн бұрын
Oh. I didn't know that
@vickytbh
@vickytbh 6 күн бұрын
how bc i want to do that
@meep_poggerson
@meep_poggerson 6 күн бұрын
@@vickytbh 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
@vickytbh
@vickytbh 5 күн бұрын
@@meep_poggerson omg tysm
@meep_poggerson
@meep_poggerson 5 күн бұрын
@@vickytbh np
@maciezez
@maciezez 7 күн бұрын
Fun fact: You cannot get rich from comments 😢
@Incognit__
@Incognit__ 6 күн бұрын
1 like is one puppy we save.
@FunniMafaka
@FunniMafaka 5 күн бұрын
@@Incognit__ Ohio skibidi rizz
@skzkxjdnzjxnxndn
@skzkxjdnzjxnxndn 4 күн бұрын
@@FunniMafaka real
@jkkienzle1356
@jkkienzle1356 7 күн бұрын
I didn't even realize this was 9 min ago
@teeberticles
@teeberticles 6 күн бұрын
Day 1 of asking byteblox of making a video of MessagingService
@YEWCHENGYINMoe
@YEWCHENGYINMoe 7 күн бұрын
I just click this dudes vids 2h ago
@Eddin973
@Eddin973 6 күн бұрын
Can you make a tutorial on how to make a Roblox game like project zomboid
@Lord_raichu6369
@Lord_raichu6369 6 күн бұрын
Do it yourself
@Eddin973
@Eddin973 6 күн бұрын
@@Lord_raichu6369 sorry I just wanted to learn how to make a game like project zomboid because there isn’t any other tutorials
@eckso4237
@eckso4237 5 күн бұрын
can I get 2 mugs of diet water to go
@Nothingistaken.
@Nothingistaken. 7 күн бұрын
Im not stupid 😭😭🥺🥺😔😔😔 (i may be stupid)
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@roseakm5350
@roseakm5350 6 күн бұрын
brother, oiled up already.
@0-_.Pear._-0
@0-_.Pear._-0 7 күн бұрын
Waow
@creeperplayzz
@creeperplayzz 7 күн бұрын
Day 67 of edging to your videos
@Envixity444
@Envixity444 7 күн бұрын
make a video on how to make a fighting game.
@aleksi789
@aleksi789 6 күн бұрын
free models (thats what battlegrounds games do)
@Envixity444
@Envixity444 6 күн бұрын
@@aleksi789 tsbg?
@zxkver8943
@zxkver8943 7 күн бұрын
let's go gambling!
@Dadawen69
@Dadawen69 7 күн бұрын
Just add gambling. 99% of people quit before they win big
@skedshowcaser5034
@skedshowcaser5034 7 күн бұрын
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 7 күн бұрын
exploiters cannot change server-sided data
@realZerin
@realZerin 7 күн бұрын
​@@StarryArriithe entire system is client sided, easily exploitable.
@StarryArrii
@StarryArrii 7 күн бұрын
@@realZerin oh i didn't watch the video I just assumed nobody would be stupid enough to put the whole system on the client
@wedoalittletrolling723
@wedoalittletrolling723 7 күн бұрын
​@@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 7 күн бұрын
@@StarryArrii what if they would do that on local side?
@polski_beluga
@polski_beluga 7 күн бұрын
to make game addictive is add to it gambling
@JadenTheAnimator
@JadenTheAnimator 7 күн бұрын
stopping little boys from saying first
@NebulaAccount
@NebulaAccount 7 күн бұрын
you're just trynna say "first" without saying it, and you failed, you're third
@Beaniscool
@Beaniscool 7 күн бұрын
You are that little boy
@Beaniscool
@Beaniscool 7 күн бұрын
And you're not even first
@ceilingfan9659
@ceilingfan9659 6 күн бұрын
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 6 күн бұрын
@@ceilingfan9659 exactly
@JeLeff.
@JeLeff. 7 күн бұрын
YOU'RE WRONG, the first tycoon ever created was in 2007 or 2008
@qeqvec
@qeqvec 7 күн бұрын
#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 7 күн бұрын
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 7 күн бұрын
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 7 күн бұрын
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
@qeqvec
@qeqvec 7 күн бұрын
@@DictatePM you don't waste money in it. u don't scam children
@DictatePM
@DictatePM 7 күн бұрын
@@qeqvec it still uses a LOT of phsycology insanely addicting gambling techniques
@GamesFromJ
@GamesFromJ 7 күн бұрын
im vewwy stupid :)
@Editcooker11
@Editcooker11 7 күн бұрын
20th comment
@NowNormal
@NowNormal 7 күн бұрын
If you double click on the comment below, it likes it! ^-^
@CETggg01
@CETggg01 7 күн бұрын
I FIRST TO COMMENT LAST
@BloxBuilder100
@BloxBuilder100 7 күн бұрын
Fun Fact: if you double click a comment it likes it
@Someoneelse10
@Someoneelse10 7 күн бұрын
Neat
@vylord_trk
@vylord_trk 7 күн бұрын
These comments are so stupid
@iGuessItsAzure
@iGuessItsAzure 7 күн бұрын
SHADDUP! We know😁
@HPAN69
@HPAN69 7 күн бұрын
I don't ​@@iGuessItsAzure
@gamingwithrandomgaming
@gamingwithrandomgaming 7 күн бұрын
Shut the front door 😂
@YJ_67
@YJ_67 7 күн бұрын
249 views in 20 minutes byteblox fell off
@_Baily
@_Baily 7 күн бұрын
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 7 күн бұрын
@@_Baily its a joke lol
@XDxbox420
@XDxbox420 7 күн бұрын
BYTEBLOX SHAKE IT JUST SHAKE IT OHHH 🥵🥵🥵🥵🥵🥵🥵🥵🥵🥵
@EATB_Gamer
@EATB_Gamer 7 күн бұрын
?
@DictatePM
@DictatePM 7 күн бұрын
​@@EATB_Gamerplease never try to search what that means, you will live a happier life :)
@Suichira
@Suichira 7 күн бұрын
Your comment history on this channel is wild 🫠
@ok-__
@ok-__ 7 күн бұрын
THIS GUYS RECENT COMMENTD GOT ME DEAD 💀💀💀💀
@FacelessTheAnimatorLOL
@FacelessTheAnimatorLOL 2 күн бұрын
Erm, watesigma
The 1-Step Process of Fixing a Trash Game
15:46
ByteBlox
Рет қаралды 9 М.
⬅️🤔➡️
00:31
Celine Dept
Рет қаралды 51 МЛН
Василиса наняла личного массажиста 😂 #shorts
00:22
Денис Кукояка
Рет қаралды 9 МЛН
How to make farmer unit - GnomeCode Addons #7
4:34
VoidPlays
Рет қаралды 216
How “Impossible” Features Are Actually Coded
20:47
ByteBlox
Рет қаралды 45 М.
Can 6 DEVS Make a STORY Game Without Communicating?
15:32
RoDev
Рет қаралды 709 М.
How Did This Get 845,000 Active Players?
8:43
ByteBlox
Рет қаралды 12 М.
Turning an Optical Illusion Into a Playable Character
22:39
ByteBlox
Рет қаралды 699 М.
Roblox Time Stop
1:19
CodeZero
Рет қаралды 35 М.
Can I Make a VIRAL Roblox Game in 1 Hour?
15:16
Temprist
Рет қаралды 4,3 МЛН
Roblox studio Death note
0:59
The Rat
Рет қаралды 160
I Broke EVERY Roblox Rule
21:16
AintNoobie
Рет қаралды 295 М.
Making a Roblox game Using ONLY AI!!!
7:39
BlueBoi
Рет қаралды 704 М.
Sigma Girl Past #funny #sigma #viral
0:20
CRAZY GREAPA
Рет қаралды 27 МЛН
How did we do? 👀😬😅 @RaenaTripleCharm 🍍 | Gabriella Triple Charm #shorts
0:19
#狼途新品lt75机械键盘 #funny #comedy #memes #baby #icecream
0:15
Respect 😱🔥 #shorts #respect #viral
0:31
MG RESPECT KING
Рет қаралды 39 МЛН