How to make a limit player gate in Roblox Studio (OUTDATED)

Поделиться
HTML-код
  • Опубликовано: 21 авг 2024
  • Hey Guys
    Today we'll be learning how to make a limit player gate (idk what to call it tbh)
    This tutorial was requested, so shoutout to ihavenoname6520
    If this helped, please click the thumbs up and if you're new, I'd be grateful if you smashed the subscribe button.
    -----MESSAGE-------------
    This video is outdated but still work. If you want the updated version which also includes the leave button, watch the video linked down below
    VIDEO: • (UPDATED) How to make ...
    LINKS:
    (Models are outdated but still work)
    Gatekit :create.roblox....
    TransitionGUI:create.roblox....
    Alright, peace!

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

  • @suski62
    @suski62 4 месяца назад +42

    Did bro just say gay kid? 2:21 and make sure captions are on for more proof XD

  • @user-ef5sp2vt2g
    @user-ef5sp2vt2g 6 месяцев назад +13

    Thanks! That actually worked
    If u get an error and u can’t teleport to second place publish it too

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

      But when you teleport to the place the screen will be black

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

      I published them both and i did third party thing but it didnt work

    • @LSPPlayZ
      @LSPPlayZ 23 часа назад

      @@nicolewong8893 make sure to do everything he said and also make a new place and use only that place asset id no other one

  • @SL1-1
    @SL1-1 7 месяцев назад +82

    Here Is The whole thing :D
    local TweenService = game:GetService("TweenService")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game.Players.LocalPlayer
    local TransitionGui = Player.PlayerGui:WaitForChild("TransitionGui")
    local frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local framevisible {}
    framevisible.backgroundTransperency = 0
    local info = tweeninfo.new(2)
    TweenService:Create(frame, info, framevisible):Play()
    end)

  • @MerlinsBeard87
    @MerlinsBeard87 5 месяцев назад +12

    Usually when I do one of these tutorials I have to watch it several times but this was Very easy to understand, Keep up the great work

  • @Zybin_Younis
    @Zybin_Younis 11 месяцев назад +24

    Can You Make Another Story Series Please 😁
    Part 1: Lobby, Lobby Gate, Title Label, Gamepass Shop
    Part 2: Dialog, Objective/Timer, Transition Screen
    Part 3: Npc Animate Script, Npc Movement
    Part 4: Teleport Players Function, Teleport Npc
    Part 5: Death Gui, Checkpoints
    Part 6: Monster, Jumpscare, Cutscene
    Part 7: Shake System, Voting System
    Part 8: Boss Fight
    Part 9: Ending/Victory
    P.S. I subscribed

    • @dhashytime6607
      @dhashytime6607  10 месяцев назад +11

      Hmmmm, I’ll see

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

      bit weird to have it in that order ngl lol, rather do the game, then the lobby teleport, then extra like gamepasses/ badges etc

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

      @@dhashytime6607 can you make a video on how to leave a lobby without getting teleported?

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

      Good idea 😂🎉

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

      good idea

  • @milenaruzickova5295
    @milenaruzickova5295 6 месяцев назад +10

    Could you add when player is in the gate and wants to leave he presses the LEAVE button ? Btw this video rlly helped me, ty :)

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

    This earned you a new subscriber! I've been trying to make a cool story/horror game and needed this for my game. This genuinely helped me and I'm so glad this exists since every other tutorial didn't work.

  • @KinkkuMopo
    @KinkkuMopo Месяц назад +3

    For everyone saying not working, heres the updated version of both MAIN and TRANSITION scripts! Based on the script in the video but with improvements and fixes. Remember to put your placeid and turn on http requests, api and thirparty teleport!
    MAINSCRIPT:
    local TransitionEvent = game.ReplicatedStorage:WaitForChild("TransitionEvent")
    local TeleportService = game:GetService("TeleportService")
    local TeleportID = 123456789 -- Change to your game ID
    local Players = {}
    local IsTeleporting = false
    local TeleportPoint = script.Parent:WaitForChild("TeleportPoint")
    local PlayersAllowed = script.Parent:WaitForChild("PlayersAllowed")
    local Gate = script.Parent:WaitForChild("Gate")
    local Timer
    local Frame = Gate.SurfaceGui:WaitForChild("Frame")
    local PlayerNumber = Frame:WaitForChild("PlayerNumber")
    local TimeNumber = Frame:WaitForChild("TimeNumber")
    local function Refresh()
    PlayerNumber.Text = tostring(#Players)
    end
    local function RemoveFromList(Char)
    for i = 1, #Players do
    if Players[i] == Char.Name then
    table.remove(Players, i)
    Refresh()
    break
    end
    end
    end
    local function Teleport()
    if #Players > 0 then
    local TeleportPlayers = {}
    for i = 1, #Players do
    local player = game.Players:FindFirstChild(Players[i])
    if player then
    table.insert(TeleportPlayers, player)
    TransitionEvent:FireClient(player)
    else
    table.remove(Players, i)
    end
    end
    local success, codeOrError = pcall(function()
    return TeleportService:ReserveServer(TeleportID)
    end)

    if success then
    IsTeleporting = true
    local code = codeOrError
    local success, errorMessage = pcall(function()
    TeleportService:TeleportToPrivateServer(TeleportID, code, TeleportPlayers)
    end)

    if not success then
    warn("Teleportation failed:", errorMessage)
    end

    repeat wait() until #Players

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

      thank you but what do you do if it just doesnt teleport you in whatsoever *into the gate*

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

      @@EGDBABC I think it might be that your models are wrongly placed in the workspace or you got wrong remoteevents in the replicatedstorage. I have GateKit in workspace and I updated the both main code and the transition code and it works perfectly.

  • @52Shark_Gamer
    @52Shark_Gamer 13 дней назад +1

    thank you so much i was stuck on trying to make one myself and just couldn't figure it out - im making a game called anomalies - remember the name!

  • @DMH-productions
    @DMH-productions 8 месяцев назад +9

    Ive been looking for one of these for about a year and ive finally found one! Keep up the great work

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

      Hey I did this and it works but when the timer is finish it say that I dont have a place to teleport to please can you tell me how do I get another zeleportet where I can teleport to🥰

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

      @elanuredini6620 you need to publish ur game and then go onto setting and accept third party teleports or u need to get the I'd of the place

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

      @@DMH-productions I also have a problem when the timer ends it teleports me but it teleports me to the same game not the other one do you know how i fix this?

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

      ​@@DMH-productions wait it stopped working now

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

    Hey!!! Tysm for makling this video!! It's really helping me and my friend start a game we've been thinking about for a while!! Are you able to make a quick tutorial on how to make an exit button just in case people want to leave queue? :) TYSM ONCE AGAIN!!

  • @Zephyr-Wings-PTFS
    @Zephyr-Wings-PTFS 23 дня назад

    Tysm,I am working on a horror game right now and you were the only one where it actually worked. Simple and good explained!

    • @Goat_Dips
      @Goat_Dips 21 день назад +1

      wana work together ?

  • @neXtrioHere
    @neXtrioHere 10 месяцев назад +3

    This is too useful I made a lot of games and this kit helped a lot to make that games I even shoutout you on my community post! All the best man❤

  • @PS_BaconXXX
    @PS_BaconXXX 11 месяцев назад +9

    can you add a leave system? like you can press a textbutton that disable the thing for you and teleports you out

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

      yes i need this too!

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

      local plr = game.Players.LocalPlayer
      game.ReplicatedStorage.LeaveButton.OnClientEvent:Connect(function()
      script.Parent.LeaveButton.Visible = true
      end)
      script.Parent.LeaveButton.MouseButton1Click:Connect(function()
      game.ReplicatedStorage.LeaveButton:FireServer()
      script.Parent.LeaveButton.Visible = false
      end
      you need to add a button though but theres code for it
      @@quackd4347

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

      I NEED THIS SO BAD I'VE BEEN STRUGGLING FOR 3 DAYS

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

      So when you wanna add a leave button: add a part inside the gate, and search up a tutorial on how to make button pop on when part is touched. The add a localscript in the text button and, search up a tutorial how to make button teleport you. Then add another localscript and search up tutorial how to make button disappear on click.

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

      @@thepolandlogoreal txh

  • @missunknowngaming6890
    @missunknowngaming6890 10 месяцев назад +41

    I followed your instructions step by step, yet I got error code 773 when trying to teleport. Does the game need to be publicly Published?

  • @shittypoops
    @shittypoops 10 месяцев назад +17

    PRO TIP!:
    to make it so when the teleporter is full, the game starts sooner than usual follow this!:
    open up the GateKit's MainScript, scroll down to the bottom of it, you should see this code starting on line 85:
    while wait() do
    Timer = 20

    for i = 1, Timer do
    Timer = Timer - 1
    TimeNumber.Text = Timer
    wait(1)
    end
    Teleport()
    end
    now select all of that portion, delete it, and replace it with this code (to edit the code, say you want the game to begin right after the gate is full, the only value you have to edit is the MaximumPlayerTime number value at the top of this script portion [set to 5 by default] which to make the game start right away you would change the 5 to 0):
    local timerSet = false
    local MaximumPlayerTime = 5
    while wait() do
    if timerSet == false then
    timerSet = true
    Timer = 20
    end
    if #Players < PlayersAllowed.Value then
    Timer = Timer - 1
    TimeNumber.Text = Timer
    wait(1)
    elseif #Players == PlayersAllowed.Value and Timer MaximumPlayerTime then
    Timer = MaximumPlayerTime + 1
    for i = 1, Timer do
    Timer = Timer - 1
    TimeNumber.Text = Timer
    wait(1)
    end
    end
    if Timer == 0 then
    Teleport()
    timerSet = false
    end
    end

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

      thanks

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

      TYSM! but can you make an leave system? like click a leave button or touch the gate again to leave

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

      you have to add a button for leaving but this would be the code!
      local plr = game.Players.LocalPlayer
      game.ReplicatedStorage.LeaveButton.OnClientEvent:Connect(function()
      script.Parent.LeaveButton.Visible = true
      end)
      script.Parent.LeaveButton.MouseButton1Click:Connect(function()
      game.ReplicatedStorage.LeaveButton:FireServer()
      script.Parent.LeaveButton.Visible = false
      end@@MuluganTy

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

      @@finesse4097tyyyy

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

      yup
      @@Onedendy

  • @Zoofyboy
    @Zoofyboy 6 дней назад

    10:53 you could just click the anchor button right beside colors to your right

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

    when the timer runs out it dosent teleport me

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

    THIS HELPED A LOT YOU ARE THE BEST YT ON WORLD

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

    EVERYONE WHO IS GOING THROUGH ERROR 773 EVEN YOU FOLLOWED CORRECTLY DO THIS TWO THING
    1. CHECK YOUR SCRIPT
    2. GO TO YOUR SECOND PLACE AND DISABLE THIRD PARTY JOIN AND THEN SAVE THEN ENABLE IT AGAIN THEN SAVE

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

    When ever i try to put the number on top it keeps going to the box in the middle

  • @JimmyGames-xi3sl
    @JimmyGames-xi3sl Месяц назад +1

    Thank u this really helped with my horror game

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

    the timer isn’t counting down for some reason…

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

    Worked when I fell of my chair

  • @flippyflopper1
    @flippyflopper1 6 месяцев назад +3

    hey, i did everything right but the teleporters dont work. can you please help me?

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

    Script:
    local TweenService = game:GetService("TweenService")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game.Players.LocalPlayer
    local TransitionGui = Player.PlayerGui:WaitForChild("TransitionGui")
    local Frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local FrameVisible = {}
    FrameVisible.BackgroundTransparency = 0

    local Info = TweenInfo.new(2)

    TweenService:Create(Frame,Info, FrameVisible):Play()
    end)

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

    How do I make it so the timer doesn't start counting down until 1 player enters the gate?

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

    guys i made the full official script in this comment for yall k
    Script:
    local TweenService = game:GetService("TweenService")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game.Players.LocalPlayer
    local TransitionGui = Player.PlayerGui:WaitForChild("TransitionGui")
    local Frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local FrameVisible = {}
    FrameVisible.BackgroundTransparent = 0
    local Info = TweenInfo.new(2)
    TweenService:Create(Frame, Info, FrameVisible):Play()
    end)

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

    I have allow 3rd party Teleports and Studio Access API Service, also I have set my game to public.... but I got 403 forbidden error. Any Idea?

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

    Update: I added a leave button but when I click it the gate still counts me as inside the gate and still teleports me. (I NEED HELP)

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

      reset

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

      @@ismu_xd already tried that

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

      @@Chefy1PLEASE TELL ME Y FOUND OUT HOW AND TELL ME THE CODE

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

    Thank you so much❤ really helped on my horror game ill add you to credits❤ :)

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

    Here is the script (speak to me in Spanish because I speak Spanish) and I don't understand English very much
    local TweenService = game:GetService("Tween Service")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game. Players.LocalPlayer
    local TransitionGui = Player. PlayerGui:WaitForChild("TransitionGui")
    local Frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local FrameVisible = {}
    FrameVisible.Background Transparency = 0
    local Info = TweenInfo.new(2)
    TweenService:Create(Frame, Info, FrameVisible): Play()
    end)

  • @Gav3n-z3f
    @Gav3n-z3f Месяц назад

    I’ve been looking for a working teleport video that worked the last one I tried said error can’t be teleported this one worked I screamed success

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

    GUYS! if you guys are having a problem teleporting try to publish the game you want to teleport

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

    when i went to test it and when i loaded in it said place restricted please help me, i restarted your tutorial like 10 times.

    • @n.ar.
      @n.ar. 7 месяцев назад

      r u dumb

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

    omg!! tysm!! it helped a lot with my new game im making!! U earned a sub!!!

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

    It worked! Your the best

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

    They are literally 45k views and 431 comments and 727 suscribers YOU GUYS SHOULD SUSCRIBE, HE PUT SO MUCH EFFORT

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

    Dhasty, can u do a video of how to make the left button? and also, when it teleports the Players numbers is still there, also when i leave or smthing

  • @Thedoorsfloorthree
    @Thedoorsfloorthree 5 месяцев назад +2

    Why is it not working for me?

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

    TY!!! I subbed btw! I’m making a game called hotel horror😂

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

    This is very good, thank you 😍😍✌✌, but can you make a script to exit the teleport location so that when the player chooses the wrong location the player can exit the teleport location?

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

    Thanks bro, it really worked, i will even put a small tutorial here
    It worked, you put the multiplayer option in 10, however the 1 player text can make the players of the game confused, to do it, Go to the model (GateKit) And then Open, GateModel and go to "Gate" Part and then, surfaceGui, go in frame and you should find it
    Note: If you are confused with the go, i mean "Go inside" Go inside file/Inside archive

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

    THANKS SO MUCH! it really helped me out.❤

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

    how do i unrestrict the second place on Mac book pro

  • @giorgigogola7765
    @giorgigogola7765 26 дней назад

    thank you man it really worked ♥

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

    Thank you so much! i will put the game in the reply's when I'm done testing and making changes!

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

    can anyone lplease help me it just kills me or puts me in the void

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

    THANK YOU SO MUCH THIS HAS BEEN A BIG HELP! Im also glad it still works in 2024

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

      yup too in 2023 and all then

  • @Angellove-cc3ul
    @Angellove-cc3ul 6 месяцев назад +1

    everytime i try to go in the teleporter, it ends up killing me? idk how to fix it either i did everything correctly too

  • @AirBoat123-xn9ii
    @AirBoat123-xn9ii 2 месяца назад +1

    Mine didn’t work
    The timer went but then nothing happened
    Please tell me what to do😢😢

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

      same with me, have you set game to public? and enable 3rd party teleport (also studio api service) ?

  • @Qaundail_onroblox
    @Qaundail_onroblox 21 день назад

    hey great work but i need help, i spent all my free time for the day on this but i doesnt teleport me to the part its ment to i just does nothing? this is so painfull and also idea: can you put the script in the desc in the next video that much easier, ive seen it beeen done

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

    Can u make a small video for an Exit when u tuch the gate in there

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

    this is a very good tutorial but can you make a tutorial on how to make a leace button and how to let the camera show the time and people

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

      Yes thats what happened to me too

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

      did u find a way to make a leave button on this

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

      @@sandwichguy2018 not yet

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

      @@MaximeVanBogaert please let me know when

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

    How can I make it teleport not to the same server? I’m just doing something like a horror game, and I’m making a transition between parts of chapter 1, if there are 2 players in part 1, then only these 2 players should be in part 2, otherwise it turns out that literally everyone is teleported to part 2, no one located on separate servers

    • @user-tp9ku4vv4h
      @user-tp9ku4vv4h 3 месяца назад

      did you knew that?
      do a new map and make sure that it private and take the place id from this and paste it into the script

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

    There has been a problem for me when i go into the gate it doesnt teleport me in the gate or to the other place (the timer or players doesn't work either)

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

      Me too please help

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

      ME FREAKING TOO

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

      Here I modified the code a little so that the timer starts when a player touches the gate, the bad thing is that if the player resets or exits the game before the timer ends then it freezes, but if another player touches it it starts again. counting from 20 only affects that but the rest works:
      local TransitionEvent = game.ReplicatedStorage.TransitionEvent
      local TeleportService = game:GetService("TeleportService")
      local TeleportID = 16470083832
      local Players = {}
      local IsTeleporting = false
      local TeleportPoint = script.Parent.TeleportPoint
      local PlayersAllowed = script.Parent.PlayersAllowed
      local Gate = script.Parent.Gate
      local Timer = nil
      local Frame = Gate.SurfaceGui:WaitForChild("Frame")
      local PlayerNumber = Frame:WaitForChild("PlayerNumber")
      local TimeNumber = Frame:WaitForChild("TimeNumber")
      function Refresh()
      PlayerNumber.Text = #Players
      end
      local function RemoveFromList(Char)
      for i = 1, #Players do
      if Players[i] == Char.Name then
      table.remove(Players, i)
      Refresh()
      break
      end
      end
      end
      local function StartTimer()
      Timer = 20
      while Timer > 0 do
      Timer = Timer - 1
      TimeNumber.Text = Timer
      wait(1)
      end
      if #Players > 0 then
      local TeleportPlayers = {}
      for i = 1, #Players do
      if game.Players:FindFirstChild(Players[i]) then
      table.insert(TeleportPlayers, game.Players:FindFirstChild(Players[i]))
      TransitionEvent:FireClient(game.Players:FindFirstChild(Players[i]))
      else
      table.remove(Players, i)
      end
      end
      local Code = TeleportService:ReserveServer(TeleportID)
      IsTeleporting = true
      TeleportService:TeleportToPrivateServer(TeleportID, Code, TeleportPlayers)
      repeat
      wait(1)
      until #Players

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

    if someone is too lazy to write the transition script:
    local TweenService = game:GetService("TweenService")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game.Players.LocalPlayer
    local TransitionGui = Player.PlayerGui:WaitForChild("TransitionEvent")
    local Frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local FrameVisible = {}
    FrameVisible.BackgroundTransparency = 0
    local Info = TweenInfo.new(2)
    TweenService:Create(Frame, Info, FrameVisible):Play()
    end)

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

    what if u want to exit? no exit button?

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

    bro, thank you so much for this, my friend and i are working on a game and i lost hope when i couldnt find any teleports, but thanks to you, we are back on track. thanks for this vid

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

      Hey I did this and it works but when the timer is finish it say that I dont have a place to teleport to please can you tell me how do I get another zeleportet where I can teleport to🥰

    • @user-cp9so1no6g
      @user-cp9so1no6g 6 месяцев назад

      @@elanuredini6620publish both games in file

  • @___Quanzzz___
    @___Quanzzz___ 8 дней назад

    SIR I HOPE U WILL SEE THIS COMMAND. ACTUALLY, IT WORKED AND THX A LOT. BUT WHAT ABOUT THE LEAVING BUTTON?

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

    This really helped me thank you

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

    Thanks you, you had help me a lot. Your video is the only script that had help me :,)

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

      Hey I did this and it works but when the timer is finish it say that I dont have a place to teleport to please can you tell me how do I get another zeleportet where I can teleport to🥰

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

      Maybe the code of the another place is wrong,I wish you luck @@elanuredini6620

    • @hms..studio740
      @hms..studio740 4 месяца назад

      @@elanuredini6620 did u publish the 2nd game?

  • @Mr.cacti123
    @Mr.cacti123 Месяц назад

    the tutorial helped me a lot thanks!

  • @Drago_YT77
    @Drago_YT77 27 дней назад +1

    Teleportation is failing bro :( they are saying that the place is restricted

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

    Thank you very much for the help i've been trying to make a thing like this for hours you saved my time lol thanks

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

    HERE IS YOUR SCRIPT WITHOUT ANY MISSPELL
    local TweenService = game:GetService("TweenService")
    local TransitionEvent = game.ReplicatedStorage.TransitionEvent
    local Player = game.Players.LocalPlayer
    local TransitionGui = Player.PlayerGui:WaitForChild("TransitionGui")
    local Frame = TransitionGui:WaitForChild("Frame")
    TransitionEvent.OnClientEvent:Connect(function()
    local FrameVisible = {}
    FrameVisible.backgroundTransperency = 0
    local info = TweenInfo.new(2)
    TweenService:Create(Frame, Info, FrameVisible):Play()
    end)

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

    You dont have that many subs but you should have. Its works so nice!

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

    thank you so much for this tutorial it really helped my game alot...

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

    Hi! 😊 I was wondering if you can make another video of how to animate things? That would be great!

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

    could you make a tutorial on a back buttin so when your in the teleporter when you go in theres a back button to leave

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

    Huge W to you for explaining everything!

  • @atquttfg7232
    @atquttfg7232 5 месяцев назад +2

    how can i leave the teleporter?

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

      Just reset

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

      did u find a way to make a leave button on this

  • @SweatyGodzilla-nk6nu
    @SweatyGodzilla-nk6nu 4 месяца назад

    great vid love how you go slow when teaching people how to code a lot of youtubers go really fast and its hard to understand

  • @NexitYT
    @NexitYT 5 месяцев назад +2

    How to leave when player is in the gate?

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

      Just reset

    • @NexitYT
      @NexitYT 5 месяцев назад +2

      @@ismu_xd bruh!

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

      did u find a way to make a leave button on this

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

      @@NexitYT did u find a way to make a leave button on this

  • @AboGaming-o2o
    @AboGaming-o2o 3 месяца назад

    Everything is perfect but when i teleport to the testplace the screen back and never come back normal why

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

    for some reason when i teleport to the game, it says something like "you cannot teleport to this game because it is restricted" even though both of the games are public and posted to roblox

  • @Urfavv_tree
    @Urfavv_tree 29 дней назад

    So i have a game and i made a lobby far away but when it teleports me it teleports me back to the lobby bc the the same game

  • @AlenReichhard-e2q
    @AlenReichhard-e2q 29 дней назад

    someone pls help my screen just stays black and i get this notification Failed to reserve server: HTTP 403 (Forbidden) (x2) - Server - MainScript:55

  • @Tachyon_YT
    @Tachyon_YT 27 дней назад

    How would I make this so that it would teleport someone to somewhere else in the same game

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

    I LOVE THIS VIDEO THANK YOU SO MUCH

  • @PhilipposLambrou
    @PhilipposLambrou 4 дня назад

    For me there isnt a leave button is it only for me or also for others??

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

    Thanks so much fast easy quick tutorial no 20 minute start just right into it!

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

    please make a 1v1 queueing system like the ones in murderers vs sherrif PLEASEEE

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

    YOU MADE MY DAY THANKYOU SO SO MUCH :

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

    tysm that was really helpful and also really painful but it turn out really good ty:)

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

      Can u help me why its dont teleport me I public my game but still not work can u help me need reply

    • @Cow-u2j
      @Cow-u2j 6 месяцев назад

      ​@@roblhacki can

    • @mooniolight-kerryfordmoran5209
      @mooniolight-kerryfordmoran5209 6 месяцев назад

      @@roblhacksame idk

    • @hms..studio740
      @hms..studio740 4 месяца назад

      @@roblhack did u add the game id to the script??

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

      @@hms..studio740 i know I did it my self

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

    Hey this is very helpful , but how can when we end the game to bring us back in the lobby?

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

      Add a back to lobby button, heres the localscript you put inside the button
      local ID = 000000 -- your id
      script.Parent.Activated:Connect(function()
      game:GetService("TeleportService"):Teleport(game.Players.LocalPlayer, ID)
      end)

  • @Stkryan44544
    @Stkryan44544 12 дней назад

    when i walk up to the gatekit it dosent do anything

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

    great video tutorial I can now make a weird strict dad inspired game :D

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

    it doesent work and im having a panic attack bc i cant figure out what it is

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

      Why wont u screech out what it is then

  • @LucasH.-oc8ju
    @LucasH.-oc8ju 5 месяцев назад

    im your 500th sub!

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

    how to we leave the queue teleport button?

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

      Reset character. I'll try and figure how to add it

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

      @@dhashytime6607 bro its easy u jus gotta add a gui in replicated storage add a script so it enables when you touch the tp gate and add a click detector and add a script then add a part in the workspace and make it so that once we click it it will tp us to that part from which we can leave

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

      ​@@provalok6266ClickDetector is not a valid member of a GUI, it for a part.

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

      pls help with that
      @@provalok6266

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

      did u figure out
      @@dhashytime6607

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

    I have 2 questions. How do you add a leave button? so payers can leave the gate. Second how do I make it so the timer on the gate doesn't start until a player enters? (I mean it doesn't matter but I want to figure out how to fix this.)

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

      me too

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

      What I did I just made a kill brick in it and u just walk into it and it kills somehow the kill brick resets it

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

      did u find a way to make a leave button on this

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

      @@I_LOVE_ADO1 did u find a way to make a leave button on this

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

    What about the leave button?

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

      did u find a way to make a leave button on this

  • @rhgaming6501
    @rhgaming6501 22 дня назад +1

    can u make one with the scripts im getting confused pls do

  • @Adam-kd4co
    @Adam-kd4co 2 месяца назад +1

    how can i like select specific games into the task manager

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

    I’m having a hard time making the Main script:(

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

    AY this guy deserves more subs like he is even a bacon hair cool guy :)

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

    bro loved ur video thankyou soooo much!!!!!!!!!!!!!! :D

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

    please make a video about how to teleport the players once it reached like 4/4 and teleports all 4 of them

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

      open up the GateKit's MainScript, scroll down to the bottom of it, you should see this code starting on line 85:
      while wait() do
      Timer = 20

      for i = 1, Timer do
      Timer = Timer - 1
      TimeNumber.Text = Timer
      wait(1)
      end
      Teleport()
      end
      now select all of that portion, delete it, and replace it with this code (to edit the code, say you want the game to begin right after the gate is full, the only value you have to edit is the MaximumPlayerTime number value at the top of this script portion [set to 5 by default] which to make the game start right away you would change the 5 to 0):
      local timerSet = false
      local MaximumPlayerTime = 5
      while wait() do
      if timerSet == false then
      timerSet = true
      Timer = 20
      end
      if #Players < PlayersAllowed.Value then
      Timer = Timer - 1
      TimeNumber.Text = Timer
      wait(1)
      elseif #Players == PlayersAllowed.Value and Timer MaximumPlayerTime then
      Timer = MaximumPlayerTime + 1
      for i = 1, Timer do
      Timer = Timer - 1
      TimeNumber.Text = Timer
      wait(1)
      end
      end
      if Timer == 0 then
      Teleport()
      timerSet = false
      end
      end
      Credits to
      @shittypoops

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

    Man you are underrated 🔥