Wave Skip Tutorial - GnomeCode Tower Defense Addons #15

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

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

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

    I forgot to add one thing to the video. In ReplicatedStorage create Folder called Skip and in it create 2 int values what are called Pass and Skip

    • @JustCarl-u9h
      @JustCarl-u9h 7 месяцев назад

      Yey

    • @JustCarl-u9h
      @JustCarl-u9h 7 месяцев назад

      it just next wave nons top how?? skip did not shown yet waves are starting so fast lol(the ui do show but i did not press skip yet it just starts a new wave and the ui was always delayed

    • @JustCarl-u9h
      @JustCarl-u9h 7 месяцев назад

      i think i just fixed it(works now!) tysm Shadow_Reaper

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

      @@JustCarl-u9hHow you fix its pls tell me

    • @JustCarl-u9h
      @JustCarl-u9h 7 месяцев назад

      @@apfilmslego7567 it does still have a bug cuz it just wait for all the mob spawned
      Example
      If i placed spawn 5 zombie
      After placing 5 zombie it finally skips
      Idk why

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

    Thank you for making people actually type out the scripts.

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

    Your addons are awesome! I swear, you are the most underrated gnome code td content creator (addon creator), keep it up! Your tutorials are very helpful

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

    Thank you this is working great!

  • @Miggs3
    @Miggs3 7 месяцев назад +4

    How do you make a timer gui with this? Thx for the wave skip btw. This is like the only one that actually works

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

      make the gui, inside it make a local script and grab your minutes and seconds value, then just put something like "timer.Text = minutes.Value .. ":" .. seconds.Value" or something like that

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

      Make a text lable and add this code:
      local timer = script.Parent
      local info = workspace:WaitForChild("Info")
      local minutes = info.Minutes
      local seconds = info.Seconds
      while true do
      wait(0.1)
      timer.Text = minutes.Value .. ":" .. seconds.Value
      end

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

      @@haloplayss bro tysm god bless u

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

      ​@@daxofone nws

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

    Bro saved my tower defense game, Big W

  • @luxcaodograu
    @luxcaodograu 7 месяцев назад +3

    Can you make a tutorial on how to put vfx in tower attacks?

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

      What is that vfx?

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

      @@pirat_cola9998 its like physical attack effects

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

      @@luxcaodograu Maybe I do

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

      @@pirat_cola9998 ok, thx!

  • @โบจจิอีสเดอะเบส
    @โบจจิอีสเดอะเบส 7 месяцев назад +1

    Love your vid❤️

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

    Can you make a addon where a unit can shoot multiple projectiles like 2 bullets at once(multiple)

  • @Vs-trollge
    @Vs-trollge 14 дней назад

    set the neverending waves as math.huge instead of 100 minutes

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

    Hey this addon is very awesome but can you please explain this part 1:22 in line 13 to 15. What is the use of that line of code? like what does it do :)

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

      Thx, in line 13 put your last wave or waves that you want to never end. It work that, when is this wave minutes change to 100 and this wave never end

  • @rq588
    @rq588 5 месяцев назад +3

    My SkipFrame won't pop up and i have no errors pls help. Ill give my scripts listt.
    *TIME*
    local ReplicatedStorage = game:GetService("ReplicatedStorage")
    local Players = game:GetService("Players")
    local wave = workspace.Info.Wave
    local info = workspace:WaitForChild("Info")
    local minutes = info.Minutes
    local seconds = info.Seconds
    local timeValue = info.Time
    wave.Changed:Connect(function(change)
    minutes.Value = math.random(0, 0)
    if wave.Value == 24 or wave.Value == 20 then
    minutes.Value = 0
    end
    seconds.Value = math.random(40, 55)
    repeat wait(1)
    seconds.Value -= 1
    if seconds.Value < 0 then
    minutes.Value -= 1
    seconds.Value = 60
    end
    if minutes.Value < 10 and seconds.Value < 10 then
    timeValue.Value = "0" .. minutes.Value .. ":0" .. seconds.Value
    else
    timeValue.Value = minutes.Value .. ":" .. seconds.Value
    end

    until minutes.Value = #Players:GetChildren() then
    showSkip:FireAllClients(false)
    skip.Skip.Value = 0
    skip.No.Value = 0
    end
    end)
    *SKIP CLIENT*
    local ReplicatedStorage = game:GetService("ReplicatedStorage")
    local Players = game:GetService("Players")
    local skip = ReplicatedStorage:WaitForChild("Skip")
    local gui = script.Parent
    local events = ReplicatedStorage:WaitForChild("Events")
    local SkipVoteEvent = events:WaitForChild("SkipVoteEvent")
    local showSkip = events:WaitForChild("ShowSkipEvent")
    gui.SkipFrame.Skip.Text = "Skip: " .. skip.Skip.Value
    gui.SkipFrame.No.Text = "No: " .. skip.No.Value
    gui.SkipFrame.Skip.Activated:Connect(function()
    SkipVoteEvent:FireServer("Skip")
    gui.SkipFrame.Skip.Text = "Skip: " .. skip.Skip.Value
    script.Click:Play()
    if skip.Skip.Value > #Players:GetChildren() then
    gui.SkipFrame.Visible = false
    end
    end)
    gui.SkipFrame.No.Activated:Connect(function()
    SkipVoteEvent:FireServer("No")
    gui.SkipFrame.Skip.Text = "No: " .. skip.Skip.Value
    script.Click:Play()
    if skip.Skip.Value > #Players:GetChildren() then
    gui.SkipFrame.Visible = false
    end
    end)
    skip.No.Changed:Connect(function(visible)
    if visible == true then
    gui.SkipFrame.Visible = true
    else
    gui.SkipFrame.Visible = false
    end
    end)
    *GUI*
    SkipFrame (Frame)
    TextLabel (Inside of SkipFrame)
    Skip (TextButton and inside of SkipFrame)
    No (TextButton and inside of SkipFrame)
    *REPLICATEDSTORAGE*
    Skip (Folder)
    Skip (IntValue and inside of Skip folder)
    No (IntValue and inside of Skip folder)
    *INFO*
    info (folder)
    Message (StringValue and inside of Info)
    Seconds(NumberValue and inside of Info)
    Minutes (NumberValue and inside of Info)
    Time(StringValue and inside of Info)
    GameRunning (BoolValue and inside of info) - - I don't have a voting system btw
    Wave(Numberand inside of Info)
    Pls help me fix this problem...

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

      Check your output for any errors, and tell me because i had a issue where the same thing happened and i fixed it, i can see if its the same thing as mine

  • @F.SODA.F
    @F.SODA.F 7 месяцев назад

    It worked, Thx. You can do working addons, continue.

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

    Please tell me what's not working, is skipping without the skip GUI appearing, and I don't really understand why

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

      You have Time script what skip wave when time is 0

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

      @@pirat_cola9998 I fixed it now (I missed type some of the script), but the GUI still isnt popping out 😭, when the time reaches it just skips the wave instead of popping out the skip gui

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

      ​@@swopingaProbably you have something wrong in Skipclient script

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

    help, the timer stops randomly at the first seconds and that doesnt let me skip :(

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

      Probably you have something wrong in Time script where it change second value

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

    is there anyway to make sure there are no mobs before skipping to the next round (when the timer ends)

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

    Everything works but when I’m playing I check info then time and it goes down but the skip never appears

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

    idea: executioner type tower, like the projectile bounces around between enemies

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

    It works fine except on the first wave the seconds don't count down could I have some help

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

      nvm, fixed it

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

      @@Noobyoulus how

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

      @@Stumpy_VR added a delay when checking if the amount of mobs in the folder was 0

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

      @@Noobyoulus k wher-

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

      @@Stumpy_VR in the time script where it waits until mobs = 0

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

    I don’t know if you’ll reply, and if anyone else had this problem, but, when you skip the wave, but there’s still more enemies trying to spawn, it waits for them to spawn before skipping, any fixes?

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

      @@epicpro_gamezyt017 This script work that

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

    imagine if you had to code but you couldent use tab to autofill long ish words

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

    Crash EVERYWHERE the moment i click "PLAY" it crashes.

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

      @@alast6624 I don't have in tutorial button "PLAY" but probably you write something wrong in while command

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

      @@pirat_cola9998 what happened i used marats Wave Skip. Were you wrong? Yea it was the problem with Rmote Events I already fixed it just did what marat did

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

      @@pirat_cola9998 Appreciate the help anyways

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

    I have no errors and still a problem where the Skip UI appears but when i press skip nothing happens meaning that it does not progress to the next wave why is that and please help :(.

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

      nvm i fixed it i had some modifications already on my round script and also needed to update another line of code in order for it to work thanks!

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

    how do you make it so you cant skip the last wave and win?

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

      @@MurderBird0 Time script line 13 read text

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

      @@pirat_cola9998ty

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

    what to do a skipFrame Doesn't visible and i dont have a Errors What to do

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

    I have a problem where when i click skip nothing happens (pass is fine), and I have checked the scripts 3 times now and there is nothing wrong

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

      same

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

      @@moisestroll have you found a fix for it since i havent

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

      @@moisestroll Hey if you still need help I found the fix (atleast for me)
      in line 20 in MainVoteScript in the "." I typed "skip" instead of "Skip" took me a while to finally realise what I did wrong

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

      @@ediopop2 do you fixd the problem?

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

      @@bigplay_brawlstars6718 yeah look up i said what was causing it

  • @drainagepipe-4150
    @drainagepipe-4150 3 месяца назад

    Mine skips wave 1 but couldn't skip wave 2

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

    I have a problem with time not running. I checked every parts of the video and the timer script is still not making the workspace timer start counting down.

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

      Your time value is string?

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

      ​@@pirat_cola9998 yeah, the Workspace Time value is a StringValue.

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

      Yeah, the Time value is StringValue. But, how can I fix the time not counting down.

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

      @@uatdowner Can you send me your time script here in a comment?

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

      @@pirat_cola9998 My Time Script:
      local Wave = workspace.Info.Wave
      local info = workspace.Info
      local Minutes = info.Minutes
      local Seconds = info.Seconds
      local TimeValue = info.Time
      local Message = info.Message
      Wave.Changed:Connect(function(change)
      Minutes.Value = 1
      Seconds.Value = 5
      if Wave.Value == 30 or Wave.Value == 40 then
      Minutes.Value = 99
      Seconds.Value = 99
      end
      repeat wait(1)
      Seconds.Value -= 1
      if Seconds.Value < 0 then
      Minutes.Value -= 1
      Seconds.Value = 60
      end
      if Minutes.Value < 10 and Seconds.Value < 10 then
      TimeValue.Value = "Time Left: 0" .. Minutes.Value .. ":0" .. Seconds.Value
      Message.Value = TimeValue.Value
      else
      TimeValue.Value = "Time Left: " .. Minutes.Value .. ":" .. Seconds.Value
      Message.Value = TimeValue.Value
      end
      until Minutes.Value

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

    How do you try not to skip the last wave?
    I’m not good at scripting, so please tell me: (

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

      Time script, line 13 set there your last wave

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

      @@pirat_cola9998Thank you so much!
      I couldn’t read because I was not good at English; (

  • @ネイビーのロブロックス
    @ネイビーのロブロックス 2 месяца назад

    End screen appears before every wave ends Don't know how to fix it?

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

      @@ネイビーのロブロックス You set in Time script the last waves in line 13?

    • @ネイビーのロブロックス
      @ネイビーのロブロックス 2 месяца назад

      @@pirat_cola9998 There are 10 waves in total, is this correct? 13 - - if wave.Value == 10 or wave.Value == 1 then

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

    idk why mine keeps just skipping and not giving me the choice to not skip it also doesn't show the gui and there's no errors?

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

      @@rrhouseman2856 Check your Skipclient script again

  • @F.SODA.F
    @F.SODA.F 7 месяцев назад

    Hi, can you make a video about how to make a beautiful gui, for example in upgrading a tower, like the next update +(a certain amount of damage, radius) or -(a certain amount of rate of fire)
    I dont know how to do it

    • @F.SODA.F
      @F.SODA.F 7 месяцев назад

      Or how to do Billboards in upgrade, it doesn’t work for Marat :(

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

      Yes, I plan to record it

    • @F.SODA.F
      @F.SODA.F 7 месяцев назад

      @@pirat_cola9998 thx. I wait

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

      @@pirat_cola9998 You can make sure that we can see when we click on the tower which mob he attacks? Please

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

    Tutorial works however 1 player can vote for 4 players did i do something wrong or is the tutorial just that

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

      can someone help?

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

      i mean 1 player can vote 4 times for Skip or pass

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

      or more

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

      @@pabloJaniszewski Yes it is, a bug I didn't know about it, good that you wrote

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

      @@pirat_cola9998 soo how do you fix it? (if you know how to, im not tryna pester you)

  • @doppi-productions
    @doppi-productions 7 месяцев назад

    nice addon but i alr got a advanced wave skip one with tables

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

    When i click skip while mobs are spawning the skipframe disappear and it count 1+ skip.value but it doesn't skip the wave until the mobs are fully spawned
    Can u fix it?

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

      That script work that, to do this I would have to change a lot in this script

  • @JustCarl-u9h
    @JustCarl-u9h 7 месяцев назад

    can u add this kind of addon?
    remove the enemy spawn cooldown on mob's script for i=1, quantity do
    task.wait(1.25) like that what i meant is every enemy has its own spawn cooldown
    example
    mob.Spawn("Normal", 5 , map)
    mob.Spawn("Quick, 5 , map)
    Normal.task.wait(0.5)
    Normal.task.wait(1)
    smth like that pls

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

      i made a addon for that

    • @JustCarl-u9h
      @JustCarl-u9h 7 месяцев назад

      Tyy

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

      Maybe I try do it

    • @JustCarl-u9h
      @JustCarl-u9h 5 месяцев назад

      @@pirat_cola9998 Yes please, that kind of addon is very important for balancing pls

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

    pls help it doesnt work for me. it says that i have Infinite yield possible on 'ReplicatedStorage:WaitForChild("Skip")'

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

      Probably it not find "Skip" in ReplicatedStorage

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

      ah ok

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

    Its work but when i again click the skip it showing 2 and when wave 3 or 4 the skip wave dont work

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

    How do I make 3 attacks on a tower (or 4 - 8)?

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

    Can you Just Add the Uncopylocked version of your game or the finished gnome code tutorial game?

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

      I probably won't. If I give it, people will learn nothing. When you assign code and fix your own mistakes, you learn programming

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

      @@pirat_cola9998 mmmm good point just wanna say good job ur doing great and ur vids are goated and I know it can be scary but if you voiceover your videos it will increase viewership a lot but it's you choice and last thing since your very talented in scripting you are prolly making a game so if you would like help on ui that's what I specialize in just lmk

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

      @@RileySheps I want in the future voiceover my videos but now my English is not too good. Thanks for the UI proposition, but for now I already have someone helping me with this.

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

      @@pirat_cola9998 nah dw ur english is good

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

    Is this shadow from specter?

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

      No

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

      @@pirat_cola9998 cap? >.> are you from the second game

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

      ​@@Kazetium I'm sorry, but I don't understand what you mean

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

      @@pirat_cola9998 maybe I’m on the wrong channel >.> but need to confirm? Are you one that played specter 2 on a arcade map and that recorded

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

      @@Kazetium Sorry, but it's not me

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

    gui is working, but are not skipping waves

  • @JustCarl-u9h
    @JustCarl-u9h 7 месяцев назад

    i think u forgot to mention the skip folder?

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

    hey i got error 49 seconds it stop

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

      add a delay before the timer starts counting down because the until function sees there are no mobs at the start of the wave

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

    Bro please help my time script it says there’s an error with repeat and it doesn’t work

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

      And it auto skips without me pressing button

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

      Nvm I’ll just delete it

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

    when I click skip it changes the pass button to skip? no error

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

      Probably in code you have mistake what change pass value to skip value

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

    5 year olds who dont wanna code because its "boring" be like: "where script plz send plz plz plz plz"

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

    towers borders please

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

    btw i prob fucked sumthin up but its ticking down 2 seconds instead of 1 second every second

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

      @@Stumpy_VR You probably set task.wait to 2 instead 1 in Time script

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

      @@pirat_cola9998 k, also when it ticks down each tick it says "value of type string cannot be converted to a number" and when i click it, it goes to line 26 of the time script which is "timeValue.Value = minutes.Value .. ":" .. seconds.Value"

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

      @@pirat_cola9998 and another thing is that it times down once then twice then once and twice again

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

    make commander dialouge that works with the modes

    • @F.SODA.F
      @F.SODA.F 7 месяцев назад

      it's already been done, but by another person

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

      @@F.SODA.F who is that person?

    • @F.SODA.F
      @F.SODA.F 7 месяцев назад

      @@Natedizzle0520 Marat

    • @F.SODA.F
      @F.SODA.F 7 месяцев назад

      @@Natedizzle0520 ruclips.net/video/dpdKlQWg2rE/видео.htmlsi=zn51cPlDHKQexKUd

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

      @@Natedizzle0520 Maybe I do that

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

    Does this work in multiplayer?

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

      Yes

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

      @@pirat_cola9998 Are you sure, I used the same tutorial you most liked used, and I could just skip by myself, even with 3+ players

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

      ​@@CornTaki Gui a bit bugged when is more players but work correctly

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

    We can skip the last wave pls fix this bug

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

      Watch the video again. It`s written in Time script

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

    bro,TYSM!

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

    it just crashes my studio

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

      @@randomscripteridklmao Maybe you have something wrong in while loop or repeat loop

  • @Tree-Channel
    @Tree-Channel 3 месяца назад

    help, for some reason there is a skip.skip.value, but i dont know what that means

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

      @@Tree-Channel It means skip is a folder and there is a skip value in it

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

    Why the ui dont invisible after i click it i have done with the code😅

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

      Probably you have something wrong in SkipClient script

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

      @@pirat_cola9998it all the same as your code

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

      @@pirat_cola9998 also when i click on pass or skip the value are not +1

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

      ​@@kenzokhqnh14 This value change very fast in 0.1 second. When you click in pass or skip it create a signal from RemoteEvent and it change value when get signal

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

      @@pirat_cola9998 oh ty

  • @DTG-mi2cw
    @DTG-mi2cw 7 месяцев назад

    value of type string cannot be converted to a number - Server - Time:25 timeValue.Value = minutes.Value .. ":" .. seconds.Value help me. @pirat

    • @DTG-mi2cw
      @DTG-mi2cw 7 месяцев назад

      i fixed it it supposed to be string value

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

    local ReplicatedStorage = game:GetService("ReplicatedStorage")
    local Players = game:GetService("Players")
    local skip = ReplicatedStorage:WaitForChild("Skip")
    local gui = script.Parent
    local event = ReplicatedStorage:WaitForChild("Events")
    local SkipVoteEvent = event:WaitForChild("SkipVote")
    local ShowSkip = event:WaitForChild("ShowSkip")
    gui.Skip.SkipButton.Text = "Skip :" .. skip.Skip.Value
    gui.Skip.NoButton.Text = "Pass: " .. skip.Pass.Value
    gui.Skip.Skip.Activated:Connect(function()
    SkipVoteEvent:FireServer("Skip")
    gui.Skip.SkipButton.Text = "Skip" .. skip.Skip.Value
    script.Click:Play()
    if skip.Skip.Value > #Players:GetChildren() then
    gui.Skip.Visible = false
    end

    end)
    gui.Skip.Skip.Activated:Connect(function()
    SkipVoteEvent:FireServer("Pass")
    gui.Skip.NoButton.Text = "Pass" .. skip.Pass.Value
    script.Click:Play()
    if skip.Skip.Value > #Players:GetChildren() then
    gui.Skip.Visible = false
    end
    end)
    skip.Skip.Changed:Connect(function(changed)
    gui.Skip.SkipButton.Text = "Skip: " .. changed
    end)
    skip.Pass.Changed:Connect(function(changed)
    gui.Skip.NoButton.Text = "Pass: " .. changed
    end)
    ShowSkip.OnClientEvent:Connect(function(visible)
    if visible == true then
    gui.Skip.Visible = true
    else
    gui.Skip.Visible = false
    end

    end)
    local ReplicatedStorage = game:GetService("ReplicatedStorage")
    local Players = game:GetService("Players")
    local skip = ReplicatedStorage:WaitForChild("Skip")
    local info = workspace.Info
    local event = ReplicatedStorage:WaitForChild("Events")
    local SkipVoteEvent = event:WaitForChild("SkipVote")
    local ShowSkip = event:WaitForChild("ShowSkip")
    info.Seconds.Changed:Connect(function(changed)
    if changed == 40 and info.Minutes.Value == 0 then
    ShowSkip:FireAllClients(true)
    elseif changed == 1 and info.Minutes.Value == 0 or #workspace.Mobs:GetChildren() = 1 then
    skip.Pass.Value -= 1
    end
    skip.Skip.Value += 1

    elseif button == "Pass" then
    if skip.Skip.Value >= 1 then
    skip.Skip.Value -= 1
    end
    skip.Pass.Value += 1
    end

    if skip.Skip.Value >= #Players:GetChildren() then
    info.Seconds.Value = 1
    info.Minutes.Value = 0

    skip.Skip.Value = 0
    skip.Pass.Value = 0

    elseif skip.Pass.Value >= #Players:GetChildren() then
    ShowSkip:FireAllClients(false)
    skip.Skip.Value = 0
    skip.Pass.Value = 0
    end
    end)

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

    it didn't work

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

    so it only appears for like 2 seconds then goes away

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

    pls SkipClient skrip🙏

  • @_limeYT_
    @_limeYT_ 18 дней назад

    Don't work

    • @pirat_cola9998
      @pirat_cola9998  18 дней назад

      @@_limeYT_ Take a model and test. What don't work

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

    code? or no

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

    W channel

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

    just made evenly better version out of it

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

    YEEEEEE

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

    thx

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

    i got crashes🔥

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

      Probably you have something wrong in while command

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

      @@pirat_cola9998 yea, i realised, i did something wrong in the client script that caused it, but now it works!

  • @JustCarl-u9h
    @JustCarl-u9h 7 месяцев назад

    finally!!!

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

    Why don't you write these codes in the description and make us struggle? you wasnt helpful !

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

      just zoom in?

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

      blud is mad be cant copy and paste

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

      If yo just copy and paste, you don’t learn nothing, you just put it in and don’t touch it anymore, doing the work lets you check it out a bit, maybe helping you improve.

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

      @@epicpro_gamezyt017 true

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

    It doesn’t work bro wasting my time

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

    hello help auto skip

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

      It auto skip when time is end

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

      @@pirat_cola9998 ok

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

    W

  • @F.SODA.F
    @F.SODA.F 7 месяцев назад

    I will test it tomorrow

  • @lapislefty
    @lapislefty 25 дней назад

    I sent dms on discord if you could pretty please help me out. It would mean so much to me