STAGE SELECTOR TUTORIAL

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

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

  • @acksel8231
    @acksel8231  3 года назад +49

    Will yall support me if i comeback to roblox??

  • @hanabenhariz5421
    @hanabenhariz5421 3 года назад +43

    here's the scripts u can copy and paste:
    script 1 add in Frame:
    local plr = script.Parent.Parent.Parent.Parent
    local currentStage = plr.CurrentStage
    currentStage.Changed:Connect(function()
    local stages = game.Workspace:FindFirstChild(currentStage.Value)
    if stages then
    local hrp = plr.Character:FindFirstChild("HumanoidRootPart")
    if hrp then
    hrp.CFrame = (stages.CFrame * CFrame.new(0,3,0))
    end
    end
    end)
    script 2 add in next:
    local plr = script.Parent.Parent.Parent.Parent.Parent
    script.Parent.MouseButton1Down:Connect(function()
    if plr.CurrentStage.Value == plr.leaderstats.Stages.Value then
    plr.CurrentStage.Value = 1
    else
    plr.CurrentStage.Value += 1
    end
    end)
    script 3 add in Previous:
    local plr = script.Parent.Parent.Parent.Parent.Parent
    script.Parent.MouseButton1Down:Connect(function()
    if plr.CurrentStage.Value == 1 then
    plr.CurrentStage.Value = plr.leaderstats.Stage.Value.Value
    else
    plr.CurrentStage.Value -= 1
    end
    end)
    edited: sorry i forgot leaderstats but u can write it urself xD

  • @sprayguyroblox
    @sprayguyroblox 3 года назад +31

    Handler Scipt:
    local player = script.Parent.Parent.Parent.Parent
    local currentStage = player.CurrentStage
    currentStage.Change:Connect(function()
    local stages = game.Workspace:FindFirstChild(currentStage.Value)
    if stages then
    local hrp = player.Character:FindFirstChild(HumanoidRootPart)
    if hrp then
    hrp.CFrame = (stages.CFrame*CFrame.new(0,3,0))
    end
    end
    end)

  • @robloxgamerdj8981
    @robloxgamerdj8981 3 года назад +8

    ALL SCRIPTS HERE !!!!!!!!!!!
    -//Handler:
    local player = script.Parent.Parent.Parent.Parent
    local currentstage = player.CurrentStage
    currentstage.Changed:Connect(function()
    local stages = game.Workspace.Stages:FindFirstChild(currentstage.Value)
    if stages then
    local hrp = player.Character:FindFirstChild("HumanoidRootPart")
    if hrp then
    hrp.CFrame = (stages.CFrame * CFrame.new(0, 3, 0))
    end
    end
    end)
    --//Next Button:
    local player = script.Parent.Parent.Parent.Parent.Parent
    script.Parent.MouseButton1Click:Connect(function()
    if player.CurrentStage.Value == player.leaderstats.Stage.Value then
    player.CurrentStage.Value = 1
    else
    player.CurrentStage.Value += 1

    end
    end)
    --//Previous Button:
    local player = script.Parent.Parent.Parent.Parent.Parent
    script.Parent.MouseButton1Click:Connect(function()
    if player.CurrentStage.Value == 1 then
    player.CurrentStage.Value = player.leaderstats.Stage.Value
    else
    player.CurrentStage.Value -=1
    end
    end)
    --//My leaderstats with datastore:
    local Players = game:GetService("Players")
    local DataStoreService = game:GetService("DataStoreService")
    local SaveDataStore = DataStoreService:GetDataStore("SaveData")
    local function SavePlayerData(player)
    local success,errormsg = pcall(function()
    local SaveData = {}
    for i,stats in pairs(player.leaderstats:GetChildren()) do
    SaveData[stats.Name] = stats.Value
    end
    SaveDataStore:SetAsync(player.UserId,SaveData)
    end)
    if not success then
    return errormsg
    end
    end
    Players.PlayerAdded:Connect(function(player)
    local Stats = Instance.new("Folder")
    Stats.Name = "leaderstats"
    Stats.Parent = player
    local Stage = Instance.new("IntValue")
    Stage.Name = "Stage"
    Stage.Parent = Stats
    Stage.Value = 1

    local CurrentStage = Instance.new("IntValue")
    CurrentStage.Name = "CurrentStage"
    CurrentStage.Parent = player
    CurrentStage.Value = Stage.Value
    local Data = SaveDataStore:GetAsync(player.UserId)
    if Data then
    print(Data.Stage)
    for i,stats in pairs(Stats:GetChildren()) do
    stats.Value = Data[stats.Name]
    CurrentStage.Value = Data[CurrentStage.Name]
    end
    else
    print(player.Name .. " has no data.")
    end
    player.CharacterAdded:Connect(function(character)
    local Humanoid = character:WaitForChild("Humanoid")
    local Torso = character:WaitForChild("HumanoidRootPart")
    wait()
    if Torso and Humanoid then
    if Stage.Value >= 0 then
    local StagePart = workspace.Stages:FindFirstChild(Stage.Value)
    Torso.CFrame = StagePart.CFrame + Vector3.new(0,1,0)
    end
    end
    end)
    end)
    Players.PlayerRemoving:Connect(function(player)
    local errormsg = SavePlayerData(player)
    if errormsg then
    warn(errormsg)
    end
    end)
    game:BindToClose(function()
    for i,player in pairs(Players:GetPlayers()) do
    local errormsg = SavePlayerData(player)
    if errormsg then
    warn(errormsg)
    end
    end
    wait(2)
    end)

  • @sefggeyhehhrfehrtehhuyhe
    @sefggeyhehhrfehrtehhuyhe 2 года назад +7

    the end text label: local player = game.Players.LocalPlayer
    while wait() do
    script.Parent.Text=player.CurrentStage.Value
    end

    • @MoonWas_Here
      @MoonWas_Here 2 года назад

      bro i looked through all the comments and could not find this script to copy n paste, thx

  • @acksel8231
    @acksel8231  3 года назад +6

    V2 IS OUT!

  • @ajrecs08
    @ajrecs08 3 года назад +10

    DAMN IM FINDING THIS LOL! I WAS SEARCHING FOR "HOW TO MAKE STAGE GUI BACK TELEPORT" cz Idk what is it call;ed :/

    • @changlin1746
      @changlin1746 3 года назад +1

      lol me too

    • @HH-oj2kf
      @HH-oj2kf 3 года назад

      me three I spend 2 months to search and finally I found it! Imma like the video! :)

    • @myielgwapo
      @myielgwapo 3 года назад

      I searched "how to create a stage tranfer in roblox"

    • @koushi1363
      @koushi1363 3 года назад

      Can they skip stage even if they didn’t play it or nah?

    • @justt.tiya17
      @justt.tiya17 3 года назад

      lol i searched "how to make GUI that shows your stage -_-"

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

    Thanks Bro This Help Me So Muchhh❤❤❤❤❤❤❤❤

  • @lographix8475
    @lographix8475 Год назад +8

    Can you make it so that you have to reach the stage first before you can ever click next?

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

      yes, plss i seach it

  • @andresmartinez2198
    @andresmartinez2198 3 года назад +6

    THANK YOU I WAS LOOKING FOR THIS

  • @dragcoefficient6613
    @dragcoefficient6613 3 года назад +2

    Because I’m a lazy asshole can you put the script in the description or something so I can literally copy it and do nothing

  • @caselessgd8923
    @caselessgd8923 3 года назад +2

    **windows 7 vibe**

  • @raymondgaming_1278
    @raymondgaming_1278 3 года назад +3

    Miaw ini gua babypenzii

  • @paraskevidekatriaphobia5129
    @paraskevidekatriaphobia5129 3 года назад +2

    tysm been looing for one like this

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

    Thank you so much for this! I needed this to solve one of my jobs in the devforum, definitely subscribing

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

      How did it work for you? It doesn’t work for me. Whenever I press the arrows it doesn’t do anything. Whenever I touch the checkpoints it doesn’t even change the stage variable

  • @greengem7698
    @greengem7698 3 года назад +4

    it doesnt work for me pls help it says CurrentStage is not valid member of player

  • @memerdabeliever953
    @memerdabeliever953 3 года назад +4

    Bro I was trying to find this for a month

  • @hotdogwasfound
    @hotdogwasfound 2 года назад +2

    Maybe don’t speed up a TUTORIAL

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

      not hard to follow, cry

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

      cant you just use playback speed to slow it down

  • @Robertisindian
    @Robertisindian 3 года назад +4

    Hey, i have one question
    So, im currently using some other checkpoints so will it still work on them? Pls reply asap

  • @ajrecs08
    @ajrecs08 3 года назад +2

    YES I DID IT! but how to make savable checkpopints? please respond asap

    • @acksel8231
      @acksel8231  3 года назад +2

      Next tutorial soon ?

    • @MimoROBLOX
      @MimoROBLOX 3 года назад +3

      (test in in the real roblox so u see if it works or outdated)
      put a script in serverscriptservice
      name it "saving Script"
      copy this:
      local Players = game:GetService("Players")
      local DataStoreService = game:GetService("DataStoreService")
      local SaveDataStore = DataStoreService:GetDataStore("SaveData")
      local function SavePlayerData(player)
      local success,errormsg = pcall(function()
      local SaveData = {}
      for i,stats in pairs(player.leaderstats:GetChildren()) do
      SaveData[stats.Name] = stats.Value
      end
      SaveDataStore:SetAsync(player.UserId,SaveData)
      end)
      if not success then
      return errormsg
      end
      end
      Players.PlayerAdded:Connect(function(player)
      local Stats = Instance.new("Folder")
      Stats.Name = "leaderstats"
      Stats.Parent = player
      local Stage = Instance.new("StringValue")
      Stage.Name = "Stage"
      Stage.Parent = Stats
      Stage.Value = 1
      local Data = SaveDataStore:GetAsync(player.UserId)
      if Data then
      print(Data.Stage)
      for i,stats in pairs(Stats:GetChildren()) do
      stats.Value = Data[stats.Name]
      end
      else
      print(player.Name .. " has no data.")
      end
      player.CharacterAdded:Connect(function(character)
      local Humanoid = character:WaitForChild("Humanoid")
      local Torso = character:WaitForChild("HumanoidRootPart")
      wait()
      if Torso and Humanoid then
      if Stage.Value ~= 0 then
      local StagePart = workspace.Stages:FindFirstChild(Stage.Value)
      Torso.CFrame = StagePart.CFrame + Vector3.new(0,1,0)
      end
      end
      end)
      end)
      Players.PlayerRemoving:Connect(function(player)
      local errormsg = SavePlayerData(player)
      if errormsg then
      warn(errormsg)
      end
      end)
      game:BindToClose(function()
      for i,player in pairs(Players:GetPlayers()) do
      local errormsg = SavePlayerData(player)
      if errormsg then
      warn(errormsg)
      end
      end
      wait(2)
      end)

    • @martinvalentinokotasek8209
      @martinvalentinokotasek8209 3 года назад

      i have 2 words to say. Alvin Blox: ruclips.net/video/vobF8wCyl6U/видео.html

    • @Chr1salo
      @Chr1salo 3 года назад

      @@MimoROBLOX What do I do to the "has no data" part, it spawns me on the checkpoint but the checkpoints don't work, the leader stats aren't changing, and is staying at 0.

    • @MimoROBLOX
      @MimoROBLOX 3 года назад

      @@Chr1salo outdated, 2 months ago

  • @bluelion3396
    @bluelion3396 3 года назад +8

    Next Script:
    local player = script.Parent.Parent.Parent.Parent.Parent
    script.Player.MouseButton1Down:Connect(function()
    if player.CurrentStage.Value == player.leaderstats.Stage.Value then
    player.CurrentStage.Value = 1
    else
    player.CurrentStage.Value += 1
    end
    end

  • @paraskevidekatriaphobia5129
    @paraskevidekatriaphobia5129 3 года назад +4

    it didnt work for me :(

  • @ripJace
    @ripJace 3 года назад +3

    Just add the script to paste bin i took me 1 hour to write the whole script

  • @acksel8231
    @acksel8231  3 года назад +1

    Hi GUYS SHOULD I COME BACK TO ROBLOX ?

  • @MadShxrkz
    @MadShxrkz 3 года назад +1

    Yes it dont work I just wasted my time

  • @rrimga2861
    @rrimga2861 Год назад

    HELLO, Can You Make Video About How To Make Roblox Obby Progress Bar?

  • @mightymasonroachandfamily5030
    @mightymasonroachandfamily5030 3 года назад +9

    Back Script:
    local player = script.Parent.Parent.Parent.Parent.Parent
    script.Player.MouseButton1Down:Connect(function()
    if player.CurrentStage.Value == 1 then
    player.CurrentStage.Value = player.leaderstats.Stage.Value
    else
    player.CurrentStage.Value -= 1
    end
    end)

    • @LewisNotPog
      @LewisNotPog 3 года назад +1

      YES THANK YOU FOR MAKING ME NOT TYPE A SCRIPT FOR 10HOURS

    • @EarthyAndPakistanFlag101
      @EarthyAndPakistanFlag101 3 года назад

      LewisNotPog No Problem (BTW I am Summer Gaming)

    • @tobissj0
      @tobissj0 3 года назад

      THXXXXXXXXXXXXXXXXXXX

    • @kon1205
      @kon1205 2 года назад

      tysm

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

      TYSM

  • @BigBunnehFR
    @BigBunnehFR 7 месяцев назад +2

    putting the video on 0.25x speed cuz how good he is at doing it.

  • @fastvideoman
    @fastvideoman 3 года назад +4

    can you paste the script into the comment section?

  • @sprayguyroblox
    @sprayguyroblox 3 года назад +4

    To HowToStudio, make another tutorial on how to make a 10+ or 10- stage selector thing instead of 1+ or 1-

    • @onetrue_dream
      @onetrue_dream 3 года назад

      it would be the same script, but just change 1 to 10 and make it a different gui i guess

    • @sprayguyroblox
      @sprayguyroblox 3 года назад

      @@onetrue_dream im pretty sure you do more scripting than that

    • @derekdixon7755
      @derekdixon7755 3 года назад

      @@sprayguyroblox You don't I just copied the script and changed it to 10

  • @fastvideoman
    @fastvideoman 3 года назад +1

    please make a model

  • @infinitycuber307
    @infinitycuber307 3 года назад +3

    pls make a reset stages for obbys...

    • @robloxgamerdj8981
      @robloxgamerdj8981 3 года назад

      Like reset the players data for stages that's simple just make the leaderstats = 1 in a server script if you want it in a touched part then
      script.Parent.Touched:Connect(function(hit)
      if hit.Parent:FindFirstChild("Humanoid") then
      local player = game.Players:GetPlayerFromCharacter(hit.Parent)
      player.leaderstats.Stage = 1
      end
      end)

  • @playboytaro
    @playboytaro 3 года назад +4

    How should i make a saving checkpoints?

    • @GodlyWrecks
      @GodlyWrecks 3 года назад

      gam esettings > security > API Services = on

  • @x1cloudy817
    @x1cloudy817 3 года назад +1

    this odes not make any sense i need help on my game and its annoying doing it by myself ;-;

  • @mrcricket275
    @mrcricket275 3 года назад +2

    Hello im fake minitoon is there any possible way to make it so we dont teleport to the checkpoints that we didnt unlock?

  • @brigadeanticancer2232
    @brigadeanticancer2232 3 года назад +2

    How to do it so when you are at stage 1, you can't click anymore ?

  • @OfficialKiloy
    @OfficialKiloy Год назад

    yoo my fav song

  • @bigrusty3120
    @bigrusty3120 3 года назад +1

    Omg I was looking for this forever hope this works

  • @BurgerLarry
    @BurgerLarry 3 года назад +1

    A year of searching paid off, finally!

  • @maxryan4840
    @maxryan4840 3 года назад +4

    Great video! Does it work with other checkpoint scripts as long as “stage” is connected?

    • @maxryan4840
      @maxryan4840 3 года назад

      And I heard Roblox is expanding the market place so u can sell scripts and models legit with no scams like how they make u pay first then they send u the free model. Stuff like that. I think you should put this up for like 50 robux or something. It’s great and I think a lot of ppl would search it up.

    • @Plamraisaceline
      @Plamraisaceline 2 года назад

      Rffd

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

      dude hearted your comment but didnt anwser you 😭

  • @madbox932
    @madbox932 3 года назад +1

    this was good but I rly hated the part where you did not put the script in description. This is a huge mistake.

    • @acksel8231
      @acksel8231  3 года назад

      I don't serve lazy person, sorry.

    • @imsomeone2263
      @imsomeone2263 3 года назад +2

      @@acksel8231 sorry, I dont watch youtubers too lazy to just copy and paste the scripts into the description.

    • @acksel8231
      @acksel8231  3 года назад +2

      @@imsomeone2263 who's the lazy guy here who"s only wanted to copy and paste the script then write them theirself???

    • @imsomeone2263
      @imsomeone2263 3 года назад +1

      @@acksel8231 you just copied off an article but you did it wrong becuase your eyes are too lazy to read correctly!

    • @imsomeone2263
      @imsomeone2263 3 года назад +1

      @@acksel8231 also, only good youtubers actually do the scripts correctly and put it in the description so its not a time eater for the viewers.

  • @truegdpixel7864
    @truegdpixel7864 3 года назад +1

    5:03 its so i know where i came off the vid

  • @twincube4254
    @twincube4254 3 года назад +2

    When you go to a new stage the stage text on top (not the leaderboard) does not update help

    • @ibzy1211
      @ibzy1211 3 года назад

      that happens to me too

    • @brigadeanticancer2232
      @brigadeanticancer2232 3 года назад

      the
      opposite happens to me, the text changes but not the stage

  • @FromOcean
    @FromOcean 3 года назад

    bro can you at least paste the script in the description? bruhh

  • @im_tomato
    @im_tomato Год назад

    Can you make a rebirth shop

  • @mukeenanyafiq
    @mukeenanyafiq 2 года назад

    It didn't teleport me. That's strange..

  • @turtle8288
    @turtle8288 3 года назад +1

    *For StarterGUI> StageSelect> Frame> Handler (watch the entire video to understand what im talking about*
    local player = script.Parent.Parent.Parent.Parent
    local currentStage = player.CurrentStage
    currentStage.Changed:Connect(function()
    local stages = game.Workspace:FindFirstChild(currentStage.Value)
    if stages then
    local hrp = player.Character:FindFirstChild("HumanoidRootPart")
    if hrp then
    hrp.CFrame = (stages.CFrame * CFrame.new(0,3,0))
    end
    end
    end)
    *Next script*

  • @charlesanthonyabriol9124
    @charlesanthonyabriol9124 3 года назад +2

    Please send a copy and paste, im too lazy to do it ;-;

  • @bb_blogs
    @bb_blogs 3 года назад +3

    What if I want to make a go to first stage or go to your last stage, so if the obby is 3k stages, u don't have to click through?

  • @zjakedistort3964
    @zjakedistort3964 3 года назад +4

    it doesnt work.

  • @estefanarobledo2811
    @estefanarobledo2811 Год назад

    Not works and copied every second. Maybe need an updated version?

  • @iololgemr
    @iololgemr 24 дня назад

    My player isn't teleporting. Can anyone help me?

  • @CustomDan
    @CustomDan 2 года назад

    dont work when i tp i flop on my side

  • @HDGoated
    @HDGoated Год назад

    It didnt work. All of this for nothing

  • @catacrab
    @catacrab Год назад

    i dont think it worked because i had diffrent stages and other things

  • @im_tomato
    @im_tomato Год назад

    Hello acksel, can you make a stage selector because the youtuber named Tyler codes isn't making one, and I used his scripts to make the stages and stuff

  • @sprayguyroblox
    @sprayguyroblox 3 года назад +3

    Previous Script:
    local player = script.Parent.Parent.Parent.Parent.Parent
    script.Player.MouseButton1Down:Connect(function()
    if player.CurrentStage.Value == 1 then
    player.CurrentStage.Value = player.leaderstats.Stage.Value
    else
    player.CurrentStage.Value -= 1
    end
    end)

  • @CooIUserName
    @CooIUserName 2 года назад +1

    I hate why you dont cut your mistakes

    • @acksel8231
      @acksel8231  2 года назад +1

      to make sure people didn't do the same mistake

  • @user-cd8oc4hl2j
    @user-cd8oc4hl2j 3 года назад

    but my leaderstats does not work

  • @juargo9651
    @juargo9651 Год назад

    can you give me model?

  • @winsonroblox8100
    @winsonroblox8100 Год назад

    why when I leave and join I spawn at stage 0

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

    HOW DDO I MAKE THE BTTONS TELEPOR THE PLAYER PLEASE MAKE AN ACTUALL TUTORIAL AND REMOVE THE FUCKING ANNOYING MUSIC

  • @SlowedHalo
    @SlowedHalo 2 года назад

    I dont understand nothing all is fast i lose my time

  • @dania971
    @dania971 Год назад

    how to do music board plisssssss

  • @leddy7315
    @leddy7315 3 года назад

    Idk why but mine goes on forever

  • @DCAX99
    @DCAX99 Год назад

    Stage script:
    local player = game.Players.LocalPlayer
    while wait() do
    Script.Parent.Text = player.CurrentStage.Value
    end

  • @Ouni-n9t
    @Ouni-n9t 13 дней назад

    il wippin tout frr

  • @thecapedcrusaderisdamned
    @thecapedcrusaderisdamned 2 года назад

    does this have saving checkpoint

  • @BluestarYT_
    @BluestarYT_ 2 года назад +2

    Not working 👎👎

  • @typical_doge8127
    @typical_doge8127 Год назад

    The video was way too sped up and It didn't work. Maybe next time try slowing it down.

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

      Maybe use your brain to learn Lua with Roblox API Forum?

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

      @@azouwastaken im lazzzzzzzzzzzzy

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

      Use the playblack speed to slow it down

  • @_Certy_
    @_Certy_ Год назад

    Got a Problem!
    My idea is making a thousand stages and changing stages with a textbox or the two imagebuttons left and right.
    If you would be so kindly and help me with the problem, I have just started learning the new programming language and made my own obby.

  • @BlueIceCrown
    @BlueIceCrown 2 года назад

    Didn't work.

  • @MadShxrkz
    @MadShxrkz 3 года назад

    Doesn't work

  • @HollyJxmmer
    @HollyJxmmer 3 года назад +1

    How do I make it so they can’t teleport to the next stage if they are not on it?

    • @robloxgamerdj8981
      @robloxgamerdj8981 3 года назад

      That's what the script does if it's not unlocked they don't get teleported to it.

  • @925aiden8
    @925aiden8 3 года назад +2

    its didnt work for me

  • @Pietty1
    @Pietty1 3 года назад

    OMG DUDE THANKS ALOT!!!!!!!!

  • @Azure546
    @Azure546 2 года назад +1

    lol i rlly think he couldve done a paste script in the desc like it'd be so much easier

  • @juargo9651
    @juargo9651 Год назад

    why im not work?

  • @Storcity
    @Storcity 3 года назад

    Way to fast and confusing bro.

  • @SeamlessError
    @SeamlessError 3 года назад

    wait it dont work for me why?

  • @ultra_lilblue5271
    @ultra_lilblue5271 3 года назад +1

    Next time can u put the script in the description?

    • @axie3102
      @axie3102 3 года назад

      That is true

  • @Koz913
    @Koz913 2 года назад

    Bro ur too fast i can barely see what ur doing

  • @awesomemangaming8848
    @awesomemangaming8848 3 года назад +1

    For me everything works except for the checkpoints

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

    its not working!!!!!!

  • @has7497
    @has7497 3 года назад +3

    Dosent work anyway

    • @wellfox4585
      @wellfox4585 3 года назад

      it does in 7:43 you prob putted the +1 script in previous or you putted local script instead of script

  • @kase8911
    @kase8911 Год назад

    it didnt work.

  • @Jayiscool692
    @Jayiscool692 Год назад

    didn’t work

  • @ripJace
    @ripJace 3 года назад

    Did not work :/

  • @mightymasonroachandfamily5030
    @mightymasonroachandfamily5030 3 года назад +1

    Text Script:
    local player = game.Players.LocalPlayer
    while wait() do
    script.Parent.Text = player.CurremtStage.Value
    end

  • @noerabusseau1044
    @noerabusseau1044 3 года назад

    what do i do if my first checkpoint is named "1" and not "0", thats why its probaly not working for me, i also tried to name my checkpoint "0" but it still not working

  • @q4tz47
    @q4tz47 3 года назад

    i give up on this thing, it doesin;t work for me....anyways here is all the scripts(may not work):
    Leaderstats script-

  • @l35104Create
    @l35104Create 3 года назад

    is it possible to use this when ive already got stages and a saving script because i dont know if i should delete the old stage script and make this one

  • @user-zt2zc3px6g
    @user-zt2zc3px6g 3 года назад

    how come this has 36 dislikes

  • @itzmezephx
    @itzmezephx Год назад

    its not working

  • @nessoviskaa
    @nessoviskaa 3 года назад

    it didn't worked :(

  • @darba5180
    @darba5180 3 года назад

    ca u give me scripy?

  • @Gabri_KrOfficial
    @Gabri_KrOfficial Год назад

    what is the classname of CurrentStage on players??

  • @Celpretex
    @Celpretex 3 года назад

    bruh it dont work

  • @wakeupthewublins69
    @wakeupthewublins69 3 года назад

    The only problem I have value can go to like -2 for example

    • @Pietty1
      @Pietty1 3 года назад

      yeah, you need to do more buttons and change the value in the scripts

  • @j-eh2ms
    @j-eh2ms Год назад

    Dosnt work