How to make a ROBLOX OBBY in 15 minutes! (2024)

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 669

  • @Scrip_tix
    @Scrip_tix  Год назад +37

    Enjoyed the video? Consider subscribing! 🏆
    CHECK OUT PART 2 HERE: ruclips.net/video/0hIQgUETgpo/видео.html

    • @yusufkouba2449
      @yusufkouba2449 6 месяцев назад +2

      Btw could you make a full obby game, like without skips so we know eveythin is right, thanks 👍

    • @DuoPM_MC
      @DuoPM_MC 2 месяца назад +2

      please write the script in the comments🙃

  • @SimplySamir
    @SimplySamir 8 месяцев назад +11

    I just love how straight-foward you are in this video and your voice is calming making it so much better. You explain really well Thank you!

    • @Scrip_tix
      @Scrip_tix  8 месяцев назад +1

      Haha, I'm flattered you find my voice calming. Thanks for watching :3

    • @SimplySamir
      @SimplySamir 8 месяцев назад

      yea man, but the script for the checkpoints are not working take a look
      local ServerStorage = game:GetService("ServerStorage")
      local PlayerDataFolder = ServerStorage:WaitForChild("PlayerData")
      game.Players.PlayerAdded:Connect(function(player)

      local playerFolder = Instance.new("Folder")
      playerFolder.Name = player.UserId
      playerFolder.Parent = PlayerDataFolder

      local currentStage = Instance.new("IntValue")
      currentStage.Name = "Stage"
      currentStage.Value = 1
      currentStage.Parent = playerFolder

      end)@@Scrip_tix

    • @SimplySamir
      @SimplySamir 8 месяцев назад

      Hey the Script didn't work out did I do something wrong?
      local ServerStorage = game:GetService("ServerStorage")
      local PlayerDataFolder = ServerStorage:WaitForChild("PlayerData")
      game.Players.PlayerAdded:Connect(function(player)

      local playerFolder = Instance.new("Folder")
      playerFolder.Name = player.UserId
      playerFolder.Parent = PlayerDataFolder

      local currentStage = Instance.new("IntValue")
      currentStage.Name = "Stage"
      currentStage.Value = 1
      currentStage.Parent = playerFolder

      end)

    • @Scrip_tix
      @Scrip_tix  8 месяцев назад

      Are you getting any errors in the output window?

    • @Chrono_092
      @Chrono_092 7 месяцев назад

      @@Scrip_tix the data for the folder isn't working for me like numbers then stage one

  • @OhKeelay
    @OhKeelay 10 месяцев назад +25

    Thanks dude this actually helps alot, I didn't know how to do respawns for so long 😭

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад +4

      You're welcome :3

  • @KingCatCode
    @KingCatCode Месяц назад +11

    For the disappearing block script in 3:40 you can use:
    for i, v in pairs(script.Parent:GetChildren()) do
    if v:IsA("Part") then
    v.Touched:Connect(function(otherPart)
    if otherPart.Parent:FindFirstChild("Humanoid") then
    wait(0.2)
    v.CanCollide = false
    v.Transparency = 1
    wait(2)
    v.CanCollide = true
    v.Transparency = 0
    end
    end)
    end

    end

    • @RayaatGaming
      @RayaatGaming 23 дня назад

      Thx i did his and i didn't work i checked and everything urs worked

    • @Comprobrain
      @Comprobrain 20 дней назад +1

      thanks soooo much for
      but would recommend a little late to disappear like:
      for i, v in pairs(script.Parent:GetChildren()) do
      if v:IsA("Part") then
      v.Touched:Connect(function(otherPart)
      if otherPart.Parent:FindFirstChild("Humanoid") then
      wait(0.4)
      v.CanCollide = false
      v.Transparency = 1
      wait(2)
      v.CanCollide = true
      v.Transparency = 0
      end
      end)
      end
      end

    • @Taylor-y3q
      @Taylor-y3q 12 дней назад +1

      Your so kind

    • @AnnoyAsfw
      @AnnoyAsfw 10 дней назад

      bro ur best dude ever tyms

  • @beginnersluckminecraftforb4428
    @beginnersluckminecraftforb4428 7 месяцев назад +5

    I tried for the data saving but it didnt work, i looked for mistakes in my script, but besides that you are the only roblox creating that is ACTUALLY helping people learn. I salute you mate.

    • @beginnersluckminecraftforb4428
      @beginnersluckminecraftforb4428 7 месяцев назад +1

      Do you have any suggestions?

    • @Scrip_tix
      @Scrip_tix  7 месяцев назад

      I had a part 3 to this video which covered saving the stages, but you'd have to follow these videos in order for it to work, so you'd had to watch part 1 (this video), part 2 and part 3

    • @justsomerandomyoutubechannel49
      @justsomerandomyoutubechannel49 5 месяцев назад

      There are actually a lot of Roblox creators that make coding videos he's just one of them

  • @splashy2152
    @splashy2152 8 месяцев назад +5

    this is a good tutorial but, I have a few questions. how would I make a platform that moves constantly? how would I script it so that when I reach a stage, but then go back to a previous stage I still spawn at the highest stage I'm at? how could I add in a stage selector?

    • @Whosthishuhwhyyouask
      @Whosthishuhwhyyouask 5 месяцев назад

      I use chatGPT

    • @splashy2152
      @splashy2152 5 месяцев назад

      @@Whosthishuhwhyyouask it's not good to

    • @callmecertifiedpro
      @callmecertifiedpro Месяц назад

      for the moving parts, you would have to use vector3 and maybe a for loop. you can search up how to use them

  • @CrookFedora
    @CrookFedora Год назад +19

    Nice video :) I actually learned a lot from this video

    • @Scrip_tix
      @Scrip_tix  Год назад +1

      Thank you for watching :)

    • @Weldminasfi
      @Weldminasfi 10 месяцев назад +1

      @@Scrip_tix ur video are helping me thanks

  • @bri7971
    @bri7971 Год назад +10

    yo man where did u learn to script? ur so good at it and i see that u only have tutorials for the fundamentals of lua and i already know them so im asking where can i get more guidance

    • @Scrip_tix
      @Scrip_tix  Год назад +2

      The DevForum is a good place to start :)

  • @SweatyyNon
    @SweatyyNon 3 месяца назад +4

    Tysm for teaching me the basics, definetly worthy of a sub

  • @simonCatt_owo
    @simonCatt_owo 11 месяцев назад +23

    Great video! The other videos that i searched up didnt teach anything, so thank you for making this! It helped me a lot.

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад

      You're welcome 🤗

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад +1

      Can I see your code?

    • @simonCatt_owo
      @simonCatt_owo 11 месяцев назад

      @@Scrip_tix I realized I forgot to name the win or lose event lol

  • @KeishyKSH
    @KeishyKSH 6 месяцев назад +4

    I'm watching that in 2024 and that video helped me sooooooooooooo much, your channel shoud have 100K SUBS!

  • @TPg-5gt
    @TPg-5gt 2 месяца назад +3

    You’re good at scripting

  • @khaled2649
    @khaled2649 8 месяцев назад +3

    The Name: Making a game in 15 minutes just
    @Scriptix : After 5 minutes
    Me : hell no
    Just joking your video is nice this i the best tutorial i saw in my life i learned a lot from that video

    • @Scrip_tix
      @Scrip_tix  8 месяцев назад

      Thanks for watching :3

  • @Lily-hc6sj
    @Lily-hc6sj 3 месяца назад +4

    When I tried to do the data saving it wouldn’t work and the folders weren’t showing up when I play the game. I tried checking my script but it was fine and the same as yours. Do you know why that is?

    • @Taylor-y3q
      @Taylor-y3q 12 дней назад

      Same here I’m guessing it’s out dated but idk

    • @VentspilsMapper
      @VentspilsMapper 3 дня назад

      i found how to do that, you have to switch client to server while testing

  • @wildfoxx388
    @wildfoxx388 8 месяцев назад +2

    hi bro/sorry to bother you but can we use toolbox to make games. If we can then what are the advanrages and Disadvantages?

    • @Neverseen000
      @Neverseen000 8 месяцев назад

      Yes you can but if you use some stuff that already have scripts it may ruin your game

  • @nikoladobricic5287
    @nikoladobricic5287 6 месяцев назад +1

    How do you make it so if u die, your body part that touches the next spawn ahead doesn't count towards the next stage? syntax of ROBLOX Lua is still very confusing to me.

  • @jayce2xq
    @jayce2xq 11 месяцев назад +4

    Nice vid!, Sciptix how’d u learn how to script? Ur good at it I wanna start learning

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад +3

      I watched RUclips videos like this: ruclips.net/video/6XxY_zrgzPI/видео.html
      And took on projects

    • @jayce2xq
      @jayce2xq 11 месяцев назад +1

      Ok!

  • @devanshkumar7225
    @devanshkumar7225 11 месяцев назад +5

    Bro we need part 2 btw love ur video ❤

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад

      Just made it! ruclips.net/video/0hIQgUETgpo/видео.html

  • @nikitaonly6639
    @nikitaonly6639 10 месяцев назад +1

    check for uppercase letters if something doesn't work in your script

  • @Fr0z3nWaffle
    @Fr0z3nWaffle 7 месяцев назад +1

    whenever someone rejoins the checkpoints stop working, the leaderboard doesn't change either

    • @Scrip_tix
      @Scrip_tix  7 месяцев назад

      Could you elaborate, what do you mean they stop working? The stages don't save (at least in this part)

  • @Krokmiaou
    @Krokmiaou Месяц назад +1

    sadly it tells me to put "end" somewhere and then there's no values such as "v" so i gave up

  • @Minebloxtom
    @Minebloxtom 9 месяцев назад +2

    Every time I put the stages into the folder it doesent get in order(1,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,2,3,4,5,6,7,8,9,) does that affect me?

    • @Scrip_tix
      @Scrip_tix  9 месяцев назад

      Nope! Just make sure your first stage is stage 1, second stage is stage 2, etc. The order that its in inside the folder doesn't matter. Roblox automatically tries to stuff in a specific order, don't worry too much about it :3

    • @Minebloxtom
      @Minebloxtom 9 месяцев назад +1

      Thank you so much bro, I tried to search for a tutorial like this and even made a 120 lines script for it not to work

    • @Minebloxtom
      @Minebloxtom 9 месяцев назад +1

      You deserve 1,000,000 subs

    • @Minebloxtom
      @Minebloxtom 9 месяцев назад +1

      This is the best obby tutorial out there

    • @Scrip_tix
      @Scrip_tix  9 месяцев назад

      You're very welcome :3@@Minebloxtom

  • @HopeForMe-yt1
    @HopeForMe-yt1 9 месяцев назад +2

    Yo, i was making the script for the playerdata and user id but when i ran the code, it Didnt show me the user id nor it gave me the int Value. Can you help me, i wrote the code right

    • @Grickedit
      @Grickedit 8 месяцев назад

      Wait same it also happens to me I don't know what to do

  • @Chaoss_gtag
    @Chaoss_gtag 3 месяца назад +1

    Could you make a video about the kill brick and go more in depth

  • @mrchotuplaying
    @mrchotuplaying Месяц назад +1

    THANKS MAN
    ;

  • @Jinxed6
    @Jinxed6 4 месяца назад +3

    Hi, I am having a problem with the spawns, I have the stage display but it wont count when I go on stage 2 and when I reset on stage 2 or any other stage I go back to stage 1. Is there any way to help? Here is my code: local Spawns = game.Workspace:WaitForChild("Spawns")
    local PlayerDataFolder = game:GetService("ServerStorage"):WaitForChild("PlayerData")
    for i, v in pairs(Spawns:GetChildren()) do
    v.Touched:Connect(function(otherPart)
    if otherPart.Parent:FindFirstChild("Humaniod") then
    local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)

    local playerFolder = PlayerDataFolder:FindFirstChild(player.UserId)

    local currentStage = playerFolder:WaitForChild("Stage")

    local spawnStage = tonumber(v.Name)

    if (spawnStage - currentStage.Value == 1) then
    currentStage.Value = currentStage.Value + 1
    player.RespawnLocation = v
    end

    end
    end)
    end

  • @K4xr
    @K4xr 16 дней назад

    so basically i tried the same exact scripts and did the spawn points thing but once i go to serverstorage and PlayerData it doesn't even show everything else like wich stage i am etc

  • @ice_lighting9080
    @ice_lighting9080 4 месяца назад

    And how did you click the + button without the smaller page popping up and you used starterPack for the folder how did you do that?

  • @Mrfantastic1116
    @Mrfantastic1116 2 месяца назад +1

    Hi love the vid but when a player joins the game they spawn on a random checkpoint any idea how to fix?

  • @Johnink03
    @Johnink03 Год назад +4

    amazing video

  • @Kierowca098-wk7qj
    @Kierowca098-wk7qj 9 месяцев назад +1

    Nice video! Thanks you

  • @UnusualYT1189
    @UnusualYT1189 6 месяцев назад +2

    to make the part disapear in 3:24 you can do this script instead to:
    local part = script.Parent
    part.Touched:Connect(function(hit)

    if hit.Parent:FindFirstChild("Humanoid") then

    task.wait(.2)

    part.Transparency = 1
    part.CanCollide = false

    task.wait(1.5)

    part.Transparency = 0
    part.CanCollide = true

    end

    end)

    • @17halilibo17
      @17halilibo17 5 месяцев назад

      you enter word to number location try this your this code is wrong ask.wait(.2w) only 2 or 0.2 like number not word

    • @UnusualYT1189
      @UnusualYT1189 5 месяцев назад

      @@17halilibo17 I didn’t mean to put a w

    • @limsontugade2532
      @limsontugade2532 2 месяца назад

      Thank you

  • @Jinxed6
    @Jinxed6 4 месяца назад +2

    Is there any way you can help?

  • @Nythixal
    @Nythixal 26 дней назад +1

    hey can you pls copy and paste the script "playerjoin" and "stagemanager" i mess up everytime i try to write the script again. ty if you reply the stuff to me

  • @FootyHighlights2024
    @FootyHighlights2024 5 месяцев назад +1

    I didn’t understand how to make that it will start in he stage 1

  • @Kpiwx
    @Kpiwx 5 месяцев назад +4

    CAN YOU TELL ME THE SCRIPS? IM TO LAZY

  • @Void9961
    @Void9961 9 месяцев назад

    I wonder what’s inside of the models and the 2 obstacles models

  • @Emotoppywoppy
    @Emotoppywoppy 15 дней назад

    could you make an updated leaderstats? since roblox updated it so it doesnt work anymore

  • @Monkey-l7p
    @Monkey-l7p 5 месяцев назад +1

    My script in ServerScriptService for save data doesnt work idk how copied word for word

  • @shaky7419
    @shaky7419 5 месяцев назад

    Hey so I am in the middle of creating my first roblox obby and I was wondering if I could ask you about any of the problems I come by while doing so? Right now, I don't know how to make it so that the player has to be alive and touch the checkpoint for it to save them and spawn them at the next level. For example, I don't want their dead dead body parts to touch the next checkpoint and for the game to register that they completed the level. Is there a script for this? Thank you!!

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад

      I suppose you can have a secondary if statement checking that the humanoid's health is more than 0 after you've confirmed that the part that touched the checkpoint has a humanoid.

  • @Cooper4190
    @Cooper4190 11 месяцев назад +1

    for i, v in pairs(script.Parent:GetChildren()) do

    if v:IsA("Part") then

    v.Touched:Connect(function(otherPart)

    if otherPart.Parent:FindFirstChild("Humanoid") then

    task.wait(0.5)

    v.transparency=1
    v.CanCollide=false

    task.wait(2)

    v.transparency=0
    v.CanCollide=true

    end

    end)

    end

    end
    it dosent work help me

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад +1

      Transparency needs to be spelt with a capital 'T'.
      I encourage you to watch this video for tips: ruclips.net/video/bHFFho2ltKo/видео.html

  • @ghyyjyjjyyjhyhytjyjyj
    @ghyyjyjjyyjhyhytjyjyj 9 месяцев назад +1

    can u say why my scrit with layerdata isnt workin?

  • @arnavsinghofficialmecharen2066
    @arnavsinghofficialmecharen2066 25 дней назад +1

    Even After Replaying the video a 100 times . I keep Respawning here and there. Could u suggest me a way to fix it . :)

  • @justaguy-m2o
    @justaguy-m2o 11 месяцев назад +3

    guys just a tip, if the player data script isnt working, check spelling, and make sure your looking at current client

    • @2Sawsy
      @2Sawsy 10 месяцев назад

      Okay but what exactly do u mean by current client?

    • @justaguy-m2o
      @justaguy-m2o 10 месяцев назад

      it says on the top current client@@2Sawsy

    • @Koreanman-xL
      @Koreanman-xL 10 месяцев назад

      Right

    • @nikitaonly6639
      @nikitaonly6639 10 месяцев назад

      u are the best in the entire world i was stuck on it not working for atleast 3 hours@@Koreanman-xL

    • @nikitaonly6639
      @nikitaonly6639 10 месяцев назад

      i ment @justaguy_5042

  • @Homiczysko
    @Homiczysko 10 месяцев назад +1

    every time i reset or just join i get teleported to random spawns
    local Spawns = game.Workspace:WaitForChild("Spawns")
    local PlayerDataFolder = game:GetService("ServerStorage"):WaitForChild("PlayerData")
    for i, v in pairs(Spawns:GetChildren()) do

    v.Touched:Connect(function(otherPart)

    if otherPart.Parent:FindFirstChild("Humanoid") then

    local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)

    local playerFolder = PlayerDataFolder:FindFirstChild(player.UserId)

    local currentStage = playerFolder:WaitForChild("Stage")

    local spawnStage = tonumber(v.Name)

    if (spawnStage - currentStage.Value == 1) then

    currentStage.Value = currentStage.Value + 1
    player.RespawnLocation = v

    end
    end
    end)
    end
    did i mess up the code???

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад

      Are there any errors in the output window? Did you name your spawns in order of their positions?

  • @VeshSpaceC8
    @VeshSpaceC8 7 месяцев назад +1

    You just helped me so freaking much

  • @young-gaming
    @young-gaming 5 месяцев назад

    Then how to make a stage leaderboard like if someone got to stage 30 the top used to be 29 and they will become first place

  • @Daveys0_0
    @Daveys0_0 4 месяца назад

    Hello Scriptix, when the player died and the humanoid "parts" touched the spawn location the player can actually spawn on that spawn location so I have a question. Can I make a script where I check if the players health == 0 then it will not work.
    btw great vid i learned a lot, knew to scripting so, imma find this solution myself

    • @Scrip_tix
      @Scrip_tix  4 месяца назад

      Of course. You can simply just add an if statement under where it checks if the otherPart.Parent has a humanoid to check if the humanoid.Health is ~= 0.

    • @nerbzgd1840
      @nerbzgd1840 3 месяца назад

      @@Scrip_tix Can you give an example of this? im just starting so i wouldnt know how to make an if statement like that myself. Nor do i know where to put it.

  • @gthegamer-tz5un
    @gthegamer-tz5un 29 дней назад

    in my stage manager script on line 14 it says "attempt to index nil with 'WaitForChild'" do you know what this means?

  • @lilithsxge
    @lilithsxge 3 месяца назад

    What thing do you use to make an obby on?

  • @JustAWarden
    @JustAWarden 4 месяца назад

    I have a question why dont the disppearing blocks work i put in everything

  • @sxreemzclips
    @sxreemzclips Год назад +3

    good video

  • @naturalreddit8710
    @naturalreddit8710 7 месяцев назад +1

    so when im walking around on the spawn point, the stage numbers keep going up every time i move on it. does anyone have a fix?

    • @Scrip_tix
      @Scrip_tix  7 месяцев назад

      Can you show me your code? Are the stages labelled in ascending order (ex. 1,2,3,4...)?

  • @hard_tacklecb3660
    @hard_tacklecb3660 7 месяцев назад

    Do you think we could team create? I'm still not that good at making games yet

  • @Emery_C
    @Emery_C 5 месяцев назад

    This is a good tutorial! Thank u so much!

    • @cl07c_
      @cl07c_ 5 месяцев назад

      Did it work?

  • @Lumxii
    @Lumxii 4 месяца назад

    When I was adding spawns on to my game, it stop registering it past spawn 7. Do you know why this could be happening?

  • @Ballerplayz-kw1xi
    @Ballerplayz-kw1xi 7 дней назад

    How did you do that blue thing from script to all parts in killbrick folder? Pls let me know bc it didnt work for me

  • @Pusheensxz
    @Pusheensxz 2 месяца назад

    I don't know what I've done wrong for the killbricks. The script is the same. But it won't kill.

  • @muathmahmoud-o6n
    @muathmahmoud-o6n 4 месяца назад

    from where did you get the 407 code thing

  • @Cheesemelon2000
    @Cheesemelon2000 11 месяцев назад +2

    Can you do this whit more stage or only 6

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад +2

      As many stages as you want!

  • @AserMalik-o9q
    @AserMalik-o9q 3 месяца назад

    hi the tt is good but when i try and copy the thing to make it invisable it does not work i tryed many time i dont know what i am doing wrong

  • @POXMadiBrick
    @POXMadiBrick 5 месяцев назад +1

    can you help me please my spawns works tottaly randomly everytime i join i teleport to other spawn

    • @POXMadiBrick
      @POXMadiBrick 5 месяцев назад +1

      my stage manager script
      local Spawns = game.Workspace:WaitForChild("Spawns")
      local PlayerDataFolder = game:GetService("ServerStorage"):WaitForChild("PlayerData")
      for i, v in pairs(Spawns:GetChildren()) do

      v.Touched:Connect(function(otherPart)

      if otherPart.Parent:FindFirstChild("Humanoid") then

      local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)

      local playerFolder = PlayerDataFolder:FindFirstChild(player.UserId)

      local currentStage = playerFolder:WaitForChild("Stage")

      local spawnStage = tonumber(v.Name)

      if (spawnStage - currentStage.Value == 1) then

      currentStage.Value = currentStage.Value + 1
      player.RespawnLocation = v

      end
      end)
      end

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад

      Any errors in the code?

    • @POXMadiBrick
      @POXMadiBrick 5 месяцев назад

      Ty for responding but i alerdy fixed problem:)

  • @weltonpadmoasmolo160
    @weltonpadmoasmolo160 5 месяцев назад

    Yo mate, thanks a lot. You helped me a lot!! New subb
    Btw, when I tried to load my game, it says "We could not join the Team Create session for place_"
    If you can help, please respond. Thanks!! :)

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад

      "Try to:
      Restart roblox Studio
      Turn off and turn on Wi-Fi
      Try to report support or search for Incident ID
      Try to reinstall Roblox Studio
      Try to clean all cache and Temp files."
      - from DevForum

    • @weltonpadmoasmolo160
      @weltonpadmoasmolo160 5 месяцев назад

      I tried all of this, but none works :(
      But when I tried to open my old games, it works. But it does not work to my new ones. I don't know what's the problem here

  • @fartfish388
    @fartfish388 3 месяца назад

    how do you stop them from falling when you take out the floor?

    • @Scrip_tix
      @Scrip_tix  3 месяца назад

      Anchor the parts..?

  • @FRWYD
    @FRWYD 4 месяца назад

    i was so confused at everything how do you even copy that and like place the same thing there. this is my first time so thats why

  • @S0LD1ER129
    @S0LD1ER129 9 месяцев назад +1

    underrated

  • @PeterNechvál
    @PeterNechvál 9 месяцев назад

    for i, v in pairs(script.Parent:GetChildren)() do

    if v:IsA("Part") then

    v.Touched:Connect(function(otherPart)

    if otherPart.Parent:FindFirstChild:("Humanoid") then

    otherPart.Parent:FindFirstChild("Humanoid"):takeDamage(100)

    end

    end)

    end

    end
    can you tell me what I did wrong? because I did it 4 times and always nothing happend with my lava bricks.

    • @Scrip_tix
      @Scrip_tix  9 месяцев назад

      First line should not have '()'

  • @yeetgodYTgrind
    @yeetgodYTgrind 6 месяцев назад

    I can't seem to figure out the data saving or stage values other than that this probably one of the best tutorials ive seen ill Definitely watch the next one

    • @issy938
      @issy938 5 месяцев назад

      did u figure out how to fix it? i need help too

    • @yeetgodYTgrind
      @yeetgodYTgrind 5 месяцев назад

      @@issy938 not that I know off I doesn't seem to work anymore although I found out how to save checkpoints just had to look up

  • @Ammpee29
    @Ammpee29 9 месяцев назад +1

    Hello, im having problems beacuse whenever i make the player folder it doesnt have anything in it

    • @1kane10
      @1kane10 4 месяца назад

      same this is happening to me as well @Scriptix

    • @1kane10
      @1kane10 4 месяца назад

      @scriptix

  • @MoonPlayz_12
    @MoonPlayz_12 3 месяца назад

    bro i tried everything it doesnt work man pls help me like the storage folder the value folder doesnt come in it and then stage manager doesnt work for me

  • @Astyll-qt7vm
    @Astyll-qt7vm 8 месяцев назад

    is there some where where i can copy the scripts so i dont have to write it all myself?

  • @animeuser-x9b
    @animeuser-x9b 7 дней назад +1

    Thanks

  • @KariKis-y2s
    @KariKis-y2s 10 месяцев назад

    Nice Video but i have a question when a character respawn its give a hemlock and the hemlock is 9 sec how to do it to not get hemlock

  • @KiahannahRestaurant-wv5uq
    @KiahannahRestaurant-wv5uq 4 месяца назад

    Hi I’m new to the channel I’ll do this tomorrow.

  • @gren9037
    @gren9037 17 дней назад

    Hi, #7:30 PlayerData dosen't work for me? Dosen't add the folder when I test play?
    local ServerStorage = game:GetService("ServerStorage")
    local PlayerDataFolder = ServerStorage:WaitForChild("PlayerData")
    game.Players.PlayerAdded:Connect(function(player)

    local playerFolder = Instance.new("Folder")
    playerFolder.Name = player.UserId
    playerFolder.Parent = PlayerDataFolder

    local currentStage = Instance.new("IntValue")
    currentStage.Name = "Stage"
    currentStage.Value = 1
    currentStage.Parent = playerFolder
    end)

  • @sqwaresOD
    @sqwaresOD 11 месяцев назад

    bro can you show us what keybinds you use to select and stuff cuz we don't even know what to click when u already did it

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад

      Hey! Could you tell me in which parts of the video you were looking for? (Timestamps please)

  • @itspinster
    @itspinster 9 месяцев назад

    Hey sorry to bother but with the disappearing parts part it works the first time but after they reappear you can no longer collide with them, any idea on how to fix this issue?

    • @Scrip_tix
      @Scrip_tix  9 месяцев назад

      Can you show me your script? It's likely that you forgot to set v.CanCollide = true again.

  • @MrThePortugueezer
    @MrThePortugueezer 6 месяцев назад +1

    for some reason the script at 3:43 isnt working for me

    • @Scrip_tix
      @Scrip_tix  6 месяцев назад

      Are your parts anchored and the script placed inside the folder with the parts? If so, and it still isn't working, can you show me your code?

    • @MrThePortugueezer
      @MrThePortugueezer 6 месяцев назад

      @@Scrip_tix It was my fault in the script i accidentally wrote "Isa" instead of "IsA" thanks for helping

    • @MrThePortugueezer
      @MrThePortugueezer 6 месяцев назад

      @@Scrip_tix also, the stage number on the leaderboard doesnt show up for me even though my scripts match yours, do you know why?

  • @DropzxYT
    @DropzxYT 4 месяца назад +1

    Can someone help i made the same scripts but mine doesn't work

  • @PageMage_RBLX
    @PageMage_RBLX 6 месяцев назад

    How do you make the parts blue and then connect then to the command like that

    • @PageMage_RBLX
      @PageMage_RBLX 6 месяцев назад

      Fir the killbrick

    • @17halilibo17
      @17halilibo17 5 месяцев назад

      v.Touched:Connect(function(otherpart)
      if otherpart.Parent:FindFirstChild("Humanoid") then
      v.brickcolor = brickcolor.new("selectcolor")
      end

  • @Barrel_Dev
    @Barrel_Dev 3 месяца назад

    Could I have all the scripts in a file with info of where to put them?

  • @ReciYT
    @ReciYT 6 месяцев назад

    Im unsure in why the server script service script for spawns is not creating the folder for players, ive coppied the code exactly and made the PlayerData folder, am i missing something

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад

      The PlayerData folder is manually created (so you have to add the folder in ServerStorage yourself). If you've created the PlayerData folder already, the reason it's not showing when you run the game might be because you are viewing the ServerStorage from the client. So try switching to the Server view, which you can do by clicking the button beside the play button that says "Current: client" to toggle between the modes (while you're running the game).

    • @94492072
      @94492072 4 месяца назад

      @@Scrip_tix I had the same problem but you fix it ty

  • @blue-gloves-and-red-backround
    @blue-gloves-and-red-backround 7 месяцев назад

    Hi my falling blocks aren't working and i wrote the ame script do you know how to fix this

    • @Scrip_tix
      @Scrip_tix  7 месяцев назад

      Did you anchor the blocks first? If so, show me your code :3

  • @ericawaggoner6152
    @ericawaggoner6152 8 месяцев назад

    how did u get the floor to remove when doing a playthrough?

    • @Scrip_tix
      @Scrip_tix  8 месяцев назад

      Are you talking about the obstacle at 03:50? I believe I wrote the code for it right before that :3

    • @ericawaggoner6152
      @ericawaggoner6152 8 месяцев назад

      @@Scrip_tix at the end when u test it I can't get mine to do that, I see it's on the thing to the side where u did all ur scrips but mine doesn't pop up like that so i'm a little confused

    • @Scrip_tix
      @Scrip_tix  8 месяцев назад +1

      Like at 14:55? It's the same obstacle as the one in 03:50. Basically I had a bunch of parts which would create the path that players hop on. I placed them all inside a folder, and inserted a regular script inside that folder and wrote the code I had at 03:43. Don't forget that your parts have to be anchored, otherwise they fall out of the world!! :3

  • @nikishagovender8956
    @nikishagovender8956 3 месяца назад

    Thank you for the video, it helped :) Before this, I watched another tutorial and got rlly far, but, I accidentally deleted the spawn button and didn’t know until it was too late😢pls help me.

    • @nikishagovender8956
      @nikishagovender8956 3 месяца назад

      Pls, even if you aren’t the video creator but you know what to do, I’m begging, help me

  • @WassUpBros2084
    @WassUpBros2084 6 месяцев назад

    When I Spawn in My leaderstats don't show till I hit stage 2.

    • @Scrip_tix
      @Scrip_tix  6 месяцев назад

      Can you show me your script for the leaderstats?

  • @lov3poiison
    @lov3poiison 10 месяцев назад

    Hey, I did the all the script identical but my leader board is stuck on one and won't go up? How do I fix this

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад

      Did you name your spawns correctly? They should start at 1 and go up. Also, could you please paste your code here? It's possible you missed something. Are there any errors in the output window?

  • @ito-zen
    @ito-zen 5 месяцев назад

    for some reason when i use your script in the killerblocks it doesn't work :( i have all the blocks selected when i write it and the script unselected but on the same folder

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад

      Can you show me your code?

    • @ito-zen
      @ito-zen 5 месяцев назад

      @@Scrip_tix i fixed by using another code and appliying it to every killer block individually, thanks for the quick attention tho, really appreciate it 💝

  • @jessyy12
    @jessyy12 8 месяцев назад

    i got an error please help me: "DataStore can't be accessed from client"

  • @calcifus
    @calcifus 9 месяцев назад +1

    I need help. # Stage doesn't show up for me in ServerStorage/Playerdata/xyz/
    Also when I die I spawn at my first spawn and leaderstats aren't showing

    • @Scrip_tix
      @Scrip_tix  9 месяцев назад

      Can you show me your code?

    • @ajp417
      @ajp417 2 месяца назад

      same i need help😭😭😭😭

  • @astbrast1058
    @astbrast1058 Год назад +1

    How do i make a skip stage button???

    • @Xshard-yf4xb
      @Xshard-yf4xb 11 месяцев назад

      Im pretty sure u can make it when u buy the gamepass it sets ur stage to +1 and they u can kill the player so they tp to the next checkpoint

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад +1

      ruclips.net/video/0hIQgUETgpo/видео.html : I just made a part 2 of this where I show you how to make it!

  • @gamingwithchip8648
    @gamingwithchip8648 16 дней назад

    What do u have to press

  • @DkDub_on_top
    @DkDub_on_top 3 месяца назад

    every time i type the script in 7:14 when i run the game and stop, it doesn't even print the id, still the tutorial was kinda helpfull but my obby is now checkpointless☠☠

  • @kazuyamishima-v2z
    @kazuyamishima-v2z 10 месяцев назад +1

    selection box is not showing in my studio :(

  • @athanasiosmitrakos-tk2ol
    @athanasiosmitrakos-tk2ol 3 месяца назад

    The checkpoints keep randomising 😢 can you help me?

  • @RoDrei1
    @RoDrei1 8 месяцев назад +2

    5:23
    (saving my point)

  • @anecitalaguda785
    @anecitalaguda785 2 месяца назад

    tysm i finally made my first game

  • @GoatedShorts123
    @GoatedShorts123 10 месяцев назад

    it says on stageManager line 12 that "Argument 1 missing or nil" and its not saving the checkpoint - please respond

    • @Scrip_tix
      @Scrip_tix  10 месяцев назад

      I need you to show me your code. Please paste it here :3

  • @MichaelSanzIsAwesome
    @MichaelSanzIsAwesome 11 месяцев назад

    Can you help me out with this issue, I got the issue “Spawns is not a valid member of Workspace “Workspace””. When I spawn in, it dosent spawn me to the 1st level and instead spawns in random stages. is there any way to solve the problem?

    • @Scrip_tix
      @Scrip_tix  11 месяцев назад

      Do you have a folder called "Spawns" in the workspace?

    • @akmazmainmuaz3436
      @akmazmainmuaz3436 10 месяцев назад

      I'm having the same problem
      @@Scrip_tix

  • @Vitaminsuiiii
    @Vitaminsuiiii 5 месяцев назад +1

    Idk why but the first script wont work for me do u know why?? I did every step :(

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад +1

      Can you show me your code?

    • @Vitaminsuiiii
      @Vitaminsuiiii 5 месяцев назад

      @@Scrip_tixhow tho?

    • @Vitaminsuiiii
      @Vitaminsuiiii 5 месяцев назад

      @@Scrip_tix how do I show u that??

    • @Scrip_tix
      @Scrip_tix  5 месяцев назад +1

      Paste that first script here.

    • @Vitaminsuiiii
      @Vitaminsuiiii 5 месяцев назад

      @@Scrip_tix but how am now on iPad not on my pc??