How to Make a Game Addictive in 15 Minutes

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 209

  • @byteblox100
    @byteblox100  4 หลายเดือนก่อน +60

    My official Roblox Studio course:
    bit.ly/ByteBloxCourse

    • @xJayPlayz
      @xJayPlayz 4 หลายเดือนก่อน +1

      Course really came in handy! Still haven’t finished the course but you explain things very well

    • @creeperplayzz
      @creeperplayzz 4 หลายเดือนก่อน

      50$ for smth i can search on the forums is a scam bro 😭

  • @TelePhrog
    @TelePhrog 4 หลายเดือนก่อน +96

    I'm a baby and I can confirm, this worked flawlessly 👍

    • @bloxfy-bh7rz
      @bloxfy-bh7rz 4 หลายเดือนก่อน +1

      Yes.

    • @unscripted-2
      @unscripted-2 4 หลายเดือนก่อน +1

      Yes.

    • @Gladiator_123
      @Gladiator_123 4 หลายเดือนก่อน +1

      I'm also a baby, this also worked👍

    • @Axoy2024
      @Axoy2024 4 หลายเดือนก่อน +4

      I’m still in the womb, but I can also confirm this worked 👍

    • @SHOIOTERB
      @SHOIOTERB 4 หลายเดือนก่อน +2

      @@Axoy2024 So you have a PC in there?

  • @Scratchy__The_cat
    @Scratchy__The_cat 4 หลายเดือนก่อน +24

    I watch your videos for fun
    I can perfectly make a game on roblox, but chose to instead watch these

  • @Guywithnouploadschedule
    @Guywithnouploadschedule 4 หลายเดือนก่อน +40

    *”watching for fun”*
    dawg exposed me

  • @Bunzo1241
    @Bunzo1241 4 หลายเดือนก่อน +12

    Addictive? Imma need this.

  • @kyle2805
    @kyle2805 4 หลายเดือนก่อน +4

    This is crazy timing this popped up on my recommended as soon as I joined an incremental game

  • @xJayPlayz
    @xJayPlayz 4 หลายเดือนก่อน +5

    Definitely gonna save this video for later 😎 gonna come in handy

  • @8tan200
    @8tan200 4 หลายเดือนก่อน +3

    your videos are so good and actually making me learn stuff, too bad i have to pay forna course

  • @jinxed-truly
    @jinxed-truly 4 หลายเดือนก่อน +5

    i really needed this, thx!

  • @Elementening
    @Elementening 4 หลายเดือนก่อน +8

    byteblox's dementia is getting worse, he is repeating sentences now.

  • @mrchugbug9735
    @mrchugbug9735 4 หลายเดือนก่อน

    These videos never fail to make me addicted

  • @urnana1887
    @urnana1887 4 หลายเดือนก่อน +15

    i wanna see you play a horror game

  • @BenjaminHoffman-is8wp
    @BenjaminHoffman-is8wp 4 หลายเดือนก่อน +2

    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 4 หลายเดือนก่อน

      Interesting but you could use Tween Service to make it faster and less lines of code.

    • @DiamondFireball
      @DiamondFireball 2 หลายเดือนก่อน

      ​@@mgm1416That or AlignPosition

    • @punkineq
      @punkineq 2 หลายเดือนก่อน +1

      @@mgm1416 the whole idea is that its unoptimised

    • @mgm1416
      @mgm1416 2 หลายเดือนก่อน

      @@punkineq I know that it is intentional, it was just an idea on how to make it more optimised.

    • @punkineq
      @punkineq 2 หลายเดือนก่อน

      @@mgm1416 fair enough

  • @LiterallyAureus
    @LiterallyAureus 4 หลายเดือนก่อน +3

    So stimulating

  • @CheezyGaming0910
    @CheezyGaming0910 4 หลายเดือนก่อน +4

    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 4 หลายเดือนก่อน +1

      I JUST REALIZED IF I DONT PUT THE VALUES IN THE PLAYER IT WILL BE FOR THE WHOLE SERVER.

    • @ReeeMonke
      @ReeeMonke 4 หลายเดือนก่อน +2

      Im also making an incremental :D

    • @CheezyGaming0910
      @CheezyGaming0910 4 หลายเดือนก่อน

      @@ReeeMonke Thats cool! If you agree we can work together

    • @McDoubleMortem
      @McDoubleMortem 4 หลายเดือนก่อน

      @@CheezyGaming0910​ @ReeeMonke Be Friends and work together

    • @McDoubleMortem
      @McDoubleMortem 4 หลายเดือนก่อน

      @@ReeeMonke @CheezyGaming0910 Be Friends and work together

  • @acctdevilubsername
    @acctdevilubsername 2 หลายเดือนก่อน +1

    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

  • @meep_poggerson
    @meep_poggerson 4 หลายเดือนก่อน +2

    there is a property to make the scrolling frame automatically change the scrolling based on how much is in it.

    • @yusfkhayyat
      @yusfkhayyat 4 หลายเดือนก่อน

      Oh. I didn't know that

    • @vickytb
      @vickytb 4 หลายเดือนก่อน

      how bc i want to do that

    • @meep_poggerson
      @meep_poggerson 4 หลายเดือนก่อน +1

      @@vickytb 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

    • @vickytb
      @vickytb 4 หลายเดือนก่อน

      @@meep_poggerson omg tysm

    • @meep_poggerson
      @meep_poggerson 4 หลายเดือนก่อน

      @@vickytb np

  • @OfficalChannel_R1
    @OfficalChannel_R1 4 หลายเดือนก่อน +1

    I need this! Thank you!

  • @skzkxjdnzjxnxndn
    @skzkxjdnzjxnxndn 4 หลายเดือนก่อน +1

    Aaaaand it's all over the screen!😅😛 Dattebayo!🥳🥳🥳😁😁😁

  • @Felipefilip
    @Felipefilip 4 หลายเดือนก่อน +2

    instruction unclear: im not addicted

  • @nonproductiveproduction
    @nonproductiveproduction 4 หลายเดือนก่อน +1

    Nahh, ByteBlox tycoon arc💀

  • @UkdrillsXE1R
    @UkdrillsXE1R 4 หลายเดือนก่อน +1

    yo this is really smart and great

  • @maciezez
    @maciezez 4 หลายเดือนก่อน +9

    Fun fact: You cannot get rich from comments 😢

    • @GmetrixTutorialEsp
      @GmetrixTutorialEsp 4 หลายเดือนก่อน +1

      1 like is one puppy we save.

    • @FunniMafaka
      @FunniMafaka 4 หลายเดือนก่อน +1

      @@GmetrixTutorialEsp Ohio skibidi rizz

    • @skzkxjdnzjxnxndn
      @skzkxjdnzjxnxndn 4 หลายเดือนก่อน

      @@FunniMafaka real

  • @roseakm5350
    @roseakm5350 4 หลายเดือนก่อน +1

    brother, oiled up already.

    • @roseakm5350
      @roseakm5350 4 หลายเดือนก่อน

      brother, oiled up already.

    • @roseakm5350
      @roseakm5350 4 หลายเดือนก่อน

      brother, oiled up already.

    • @roseakm5350
      @roseakm5350 4 หลายเดือนก่อน

      brother, oiled up already.

    • @roseakm5350
      @roseakm5350 4 หลายเดือนก่อน

      brother, oiled up already.

    • @roseakm5350
      @roseakm5350 4 หลายเดือนก่อน

      brother, oiled up already.

  • @babykingfr
    @babykingfr 4 หลายเดือนก่อน +1

    you called me out when you said watching for fun haha

  • @Fir35ton3
    @Fir35ton3 4 หลายเดือนก่อน +3

    20 views in 1 minute, bros compleated the human verification

  • @dud2709
    @dud2709 3 หลายเดือนก่อน +1

    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 😭😭

  • @jkkienzle1356
    @jkkienzle1356 4 หลายเดือนก่อน +1

    I didn't even realize this was 9 min ago

  • @benenamen
    @benenamen 4 หลายเดือนก่อน +1

    Did this work for anyone? For me it only creates two frames for the cash generation and my cash doesnt increase

    • @Randomvideoseeee
      @Randomvideoseeee 6 ชั่วโมงที่ผ่านมา

      Did u get a fix yet

  • @Entification
    @Entification 2 หลายเดือนก่อน

    Now I am going to make chezburger clicker simulator

  • @horkglorpdorpporp2763
    @horkglorpdorpporp2763 4 หลายเดือนก่อน +1

    we slapping my cheek sand pensqting while joking it for u bbg

  • @DanielGamer-dr7dt
    @DanielGamer-dr7dt 4 หลายเดือนก่อน +1

    Thank you

  • @RyanEXElol
    @RyanEXElol 4 หลายเดือนก่อน +1

    Layouts work with normal frames too

  • @LaminatRbx
    @LaminatRbx 4 หลายเดือนก่อน

    I just discovered UI Padding after almost 2 years of roblox developing.

  • @Harmless_Mix
    @Harmless_Mix 4 หลายเดือนก่อน

    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 3 หลายเดือนก่อน

      Put it in a loop

  • @Dadawen69
    @Dadawen69 4 หลายเดือนก่อน +1

    Just add gambling. 99% of people quit before they win big

  • @zerdgeofficial
    @zerdgeofficial 4 หลายเดือนก่อน

    Day 1 of asking byteblox of making a video of MessagingService

  • @mathiashansen2424
    @mathiashansen2424 4 หลายเดือนก่อน

    Could'nt you just have made a leaderstats value instead of the attribute, for the cash value?

  • @creeperplayzz
    @creeperplayzz 4 หลายเดือนก่อน +1

    Day 67 of edging to your videos

  • @YEWCHENGYINMoe
    @YEWCHENGYINMoe 4 หลายเดือนก่อน +1

    I just click this dudes vids 2h ago

  • @JadenTheAnimator
    @JadenTheAnimator 4 หลายเดือนก่อน +2

    stopping little boys from saying first

    • @NebulaAccount
      @NebulaAccount 4 หลายเดือนก่อน +2

      you're just trynna say "first" without saying it, and you failed, you're third

    • @TheLazyBeanss
      @TheLazyBeanss 4 หลายเดือนก่อน +1

      You are that little boy

    • @TheLazyBeanss
      @TheLazyBeanss 4 หลายเดือนก่อน +1

      And you're not even first

    • @ceilingfan9659
      @ceilingfan9659 4 หลายเดือนก่อน +2

      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 4 หลายเดือนก่อน

      @@ceilingfan9659 exactly

  • @Literallythefusionvegito
    @Literallythefusionvegito 4 หลายเดือนก่อน +2

    Im not stupid 😭😭🥺🥺😔😔😔 (i may be stupid)

  • @SUP_was_here
    @SUP_was_here 3 หลายเดือนก่อน

    What about ppl that dont know coding

  • @zxkver
    @zxkver 4 หลายเดือนก่อน

    let's go gambling!

  • @skedshowcaser5034
    @skedshowcaser5034 4 หลายเดือนก่อน

    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 4 หลายเดือนก่อน +1

      exploiters cannot change server-sided data

    • @realZerin
      @realZerin 4 หลายเดือนก่อน

      ​@@StarryArriithe entire system is client sided, easily exploitable.

    • @StarryArrii
      @StarryArrii 4 หลายเดือนก่อน

      @@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 4 หลายเดือนก่อน

      ​@@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 4 หลายเดือนก่อน

      @@StarryArrii what if they would do that on local side?

  • @Eddin973
    @Eddin973 4 หลายเดือนก่อน

    Can you make a tutorial on how to make a Roblox game like project zomboid

    • @Lord_raichu6369
      @Lord_raichu6369 4 หลายเดือนก่อน

      Do it yourself

    • @Eddin973
      @Eddin973 4 หลายเดือนก่อน

      @@Lord_raichu6369 sorry I just wanted to learn how to make a game like project zomboid because there isn’t any other tutorials

  • @polski_beluga
    @polski_beluga 4 หลายเดือนก่อน

    to make game addictive is add to it gambling

  • @BloxBuilder100
    @BloxBuilder100 4 หลายเดือนก่อน +230

    Fun Fact: if you double click a comment it likes it

    • @Someoneelse10
      @Someoneelse10 4 หลายเดือนก่อน +4

      Neat

    • @ItzProject2BlockYT
      @ItzProject2BlockYT 4 หลายเดือนก่อน

      These comments are so stupid

    • @iGuessItsAzure
      @iGuessItsAzure 4 หลายเดือนก่อน +14

      SHADDUP! We know😁

    • @HPAN69
      @HPAN69 4 หลายเดือนก่อน +6

      I don't ​@@iGuessItsAzure

    • @gamingwithrandomgaming
      @gamingwithrandomgaming 4 หลายเดือนก่อน +5

      Shut the front door 😂

  • @RiptideCat
    @RiptideCat 4 หลายเดือนก่อน +1

    #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 4 หลายเดือนก่อน

      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 4 หลายเดือนก่อน

      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 4 หลายเดือนก่อน

      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

    • @RiptideCat
      @RiptideCat 4 หลายเดือนก่อน

      @@DictatePM you don't waste money in it. u don't scam children

    • @DictatePM
      @DictatePM 4 หลายเดือนก่อน

      @@RiptideCat it still uses a LOT of phsycology insanely addicting gambling techniques

  • @Envixity444
    @Envixity444 4 หลายเดือนก่อน

    make a video on how to make a fighting game.

    • @aleksi789
      @aleksi789 4 หลายเดือนก่อน

      free models (thats what battlegrounds games do)

    • @Envixity444
      @Envixity444 4 หลายเดือนก่อน

      @@aleksi789 tsbg?

  • @zefrozo5894
    @zefrozo5894 3 หลายเดือนก่อน +1

    somehow i failed ._.

    • @saul_goodman-v5f
      @saul_goodman-v5f 3 หลายเดือนก่อน

      what? are you a newborn. SKILL ISSUE

  • @NowNormal
    @NowNormal 4 หลายเดือนก่อน

    If you double click on the comment below, it likes it! ^-^

  • @Ecksos
    @Ecksos 4 หลายเดือนก่อน

    can I get 2 mugs of diet water to go

    • @Master_Rambler
      @Master_Rambler 4 หลายเดือนก่อน

      Only if it’s vegan keto

  • @JeLeff.
    @JeLeff. 4 หลายเดือนก่อน +1

    YOU'RE WRONG, the first tycoon ever created was in 2007 or 2008

  • @GamesFromJ
    @GamesFromJ 4 หลายเดือนก่อน +1

    im vewwy stupid :)

  • @ItsTheHaCo
    @ItsTheHaCo 3 หลายเดือนก่อน

    Me no stupid! >:(

  • @CETggg01
    @CETggg01 4 หลายเดือนก่อน

    I FIRST TO COMMENT LAST

  • @Editcooker11
    @Editcooker11 4 หลายเดือนก่อน

    20th comment

  • @YJ_67
    @YJ_67 4 หลายเดือนก่อน

    249 views in 20 minutes byteblox fell off

    • @_Baily
      @_Baily 4 หลายเดือนก่อน

      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 4 หลายเดือนก่อน

      @@_Baily its a joke lol

    • @FinnardoDeCaprio
      @FinnardoDeCaprio 3 หลายเดือนก่อน

      ​@@_Baily51k is small? :v

  • @XDxbox420
    @XDxbox420 4 หลายเดือนก่อน +5

    BYTEBLOX SHAKE IT JUST SHAKE IT OHHH 🥵🥵🥵🥵🥵🥵🥵🥵🥵🥵

    • @EATBProder
      @EATBProder 4 หลายเดือนก่อน

      ?

    • @DictatePM
      @DictatePM 4 หลายเดือนก่อน

      ​@@EATBProderplease never try to search what that means, you will live a happier life :)

    • @Suichira
      @Suichira 4 หลายเดือนก่อน +1

      Your comment history on this channel is wild 🫠

    • @ok-__
      @ok-__ 4 หลายเดือนก่อน

      THIS GUYS RECENT COMMENTD GOT ME DEAD 💀💀💀💀

    • @FacelessTheAnimatorLOL
      @FacelessTheAnimatorLOL 4 หลายเดือนก่อน

      Erm, watesigma

  • @systemplayz3991
    @systemplayz3991 2 หลายเดือนก่อน

    ah yes my baby will type Parent.part.GetGameService or some sh-