How to make a Round System in Roblox Studio

  Рет қаралды 111,063

Gamer M8

Gamer M8

Күн бұрын

Пікірлер: 765
@TheREALdesistation.tteditz
@TheREALdesistation.tteditz 2 жыл бұрын
If you do not want to write all of the script i have script 1 here: local Status = game.ReplicatedStorage:WaitForChild("Status") local Label = script.Parent:WaitForChild("TextLabel") Status:GetPropertyChangedSignal("Value"):Connect(function() Label.Text = Status.Value end) And Script here: -- Variables local Lobby = game.Workspace.Lobby local Maps = game.ReplicatedStorage.Maps:GetChildren() local Status = game.ReplicatedStorage.Status -- Game Loop while true do --Intermission for i = 10, 0, -1 do Status.Value = "Intermission: "..i task.wait(1) end -- Map Selecter local ChosenMap = Maps[math.random(1, #Maps)] local ClonedMap = ChosenMap:Clone() ClonedMap.Parent = game.Workspace Status.Value = "Map: "..ClonedMap.Name task.wait(1) -- Teleport to map for i, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = ClonedMap.TeleportPoint.CFrame end end -- Game Time for i = 10, 0, -1 do Status.Value = "Game: "..i task.Wait(1) end for i, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end end -- Destroys Map ClonedMap:Clone() end
@jacobaquino297
@jacobaquino297 Жыл бұрын
Thanks bro
@rachellalonde4632
@rachellalonde4632 Жыл бұрын
Thank you, but the game timer doesn't work, is there a reason why?
@TheREALdesistation.tteditz
@TheREALdesistation.tteditz Жыл бұрын
@@rachellalonde4632 idk check if there is errors or any problems
@rachellalonde4632
@rachellalonde4632 Жыл бұрын
@@TheREALdesistation.tteditz theres 5 of these: UnknownGlobal: (71,2) Unknown global 'clonedMap and they all are warnings
@TheREALdesistation.tteditz
@TheREALdesistation.tteditz Жыл бұрын
@@rachellalonde4632 just watch the video instead im not as good as him
@aezakmi2113
@aezakmi2113 2 жыл бұрын
Bro I could make whole game from your tutorials
@Ranga48
@Ranga48 Жыл бұрын
I pretty much did lol
@GrammarPolice3554
@GrammarPolice3554 Жыл бұрын
Same
@H4CP
@H4CP Жыл бұрын
Nah
@motka2547
@motka2547 Жыл бұрын
Fun fact: I did
@s7yrblx
@s7yrblx 10 ай бұрын
no shit people…
@HeroFigo
@HeroFigo 2 жыл бұрын
Hey m8. I am not actually a beginner but still needed this tutorial 😅 You are really good at explaining and make very entertaining videos.
@Jappley
@Jappley Жыл бұрын
I get u bro. I'm not a beginner and I've made more complicated things than this, but for some reason I couldn't do it.
@pulsive5963
@pulsive5963 8 ай бұрын
same ive been scripting for 7 months@@Jappley
@Raphaeltheslayer
@Raphaeltheslayer 5 ай бұрын
@@Jappley Fr same goes with modeling I made a whole humanoid character but I'm over here struggling to make a star?? A STAR?? And I've been scripting for like a year but couldn't do this
@KrazyReal
@KrazyReal 10 ай бұрын
This tutorial was very short and it worked! Usually the scripts I watch do not work so I was very happy and thankful! Thank you for a short and simple video that works very well!
@prizepanther
@prizepanther Жыл бұрын
Being a noob at scripting I am ever so thankful for this tutorial, you have earned yourself a new subscriber.
@youtubeaccount12000
@youtubeaccount12000 2 жыл бұрын
first script: local Status = game.ReplicatedStorage:WaitForChild("Status") local label = script.Parent:WaitForChild("TextLabel") Status:GetPropertyChangedSignal("Value"):Connect(function() Label.Text = Status.Value end)
@RAnimzz
@RAnimzz Жыл бұрын
Thank you for the script! It saved me time on my game.
@1stDIEmond
@1stDIEmond 9 ай бұрын
I'm starting to learn Lua, so explaining what scripts do is amazing for me! +new sub
@Kwvee
@Kwvee 2 жыл бұрын
I highly appreciate you going out of your way for us, Thans m8!
@newcoolboy35
@newcoolboy35 Жыл бұрын
hey m8 you just saved me. I just wanted to quit roblox development because i just could do the round system. Then i found ur vid and it saved my carrer
@ZepAnimations
@ZepAnimations 10 ай бұрын
I love how you showed how to add your own maps unlike a lot of tutorials
@deadliersheep7697
@deadliersheep7697 6 ай бұрын
Dude, your content is so underrated. the way you explain things is really easy to follow and I can genuinely apply advice you give me to real games. keep doing great stuff
@DevOfRandomness
@DevOfRandomness 2 ай бұрын
Yo thanks you so much for this awesome tutorial 👍
@ytelements3461
@ytelements3461 2 жыл бұрын
I love your vids Like the story game
@GamerM8
@GamerM8 2 жыл бұрын
Thanks, I'm glad you love them!
@ytelements3461
@ytelements3461 2 жыл бұрын
thanks
@ytelements3461
@ytelements3461 2 жыл бұрын
i ment np lol
@Cruz_reels
@Cruz_reels 3 ай бұрын
Hey! thanks a lot you make things so easy. I always experience bugs but watching your vids motivate me to keep going! thanks alot!
@Dr_Frosty
@Dr_Frosty 2 жыл бұрын
Thank YOU i needed this RIGHT NOW for a tds game
@boxjuice4100
@boxjuice4100 2 жыл бұрын
Game M8 you rly are the best dev yt I have ever seen.
@EpicCorner
@EpicCorner 11 ай бұрын
this tutorial Really helped me! I'm making a zombie survival game where zombies randomly spawn in, and your goal is to survive for 420 seconds, I think that's 7 minutes. But yeah this tutorial was helpful :)
@Ekenie
@Ekenie 2 жыл бұрын
I'm always happy when i see new vid from Gamer M8! It makes me happy!
@ZneByGD-iz4wi
@ZneByGD-iz4wi 5 ай бұрын
TYSM bro, it worked! i will definently follow u for more tutorials! subbed
@AKForeverBlox
@AKForeverBlox 2 ай бұрын
I am so glad I found this video because it worked perfectly. But there is just one thing. See my game is a combat game that switches maps but idk to know how to make a script (or add on to this one) that makes it so when there is one person left, they win right away, and not only that, have a way to know who won (like a celebration or something)
@J.N.Y.s
@J.N.Y.s 3 ай бұрын
WITH SOME CHANGES I MANAGED TO MAKE IT WORK THANKS YOU SO MUCH!!
@GamerM8
@GamerM8 3 ай бұрын
im glad you were able to make it work
@OmarDeezAlmond
@OmarDeezAlmond 6 ай бұрын
Because of your tutorials, I made a game
@GamerM8
@GamerM8 6 ай бұрын
cool, what game did you make?
@OmarDeezAlmond
@OmarDeezAlmond Ай бұрын
@@GamerM8 a zombie game using your round system!
@RealXtremeBlox
@RealXtremeBlox 2 жыл бұрын
This really helped! Thanks a lot mate
@ProCodeGaming
@ProCodeGaming Жыл бұрын
Hi XtremeBlox
@KialiiJesusIsLove
@KialiiJesusIsLove 3 ай бұрын
I am making a Fashion game and i am making the round system and this helped me so much making it i diddnt find any tutorial to make a fashion game so i am using your tutorials and it worked me :)!
@AlbertAlbertEinstein
@AlbertAlbertEinstein 10 ай бұрын
Thanks for making this tutorial now i know how to make a intermission for my round system
@vvoidedv-n7y
@vvoidedv-n7y 2 жыл бұрын
i know scripting but if im having difficulties your videos always help me out thanks!
@not_ching9993
@not_ching9993 2 жыл бұрын
finally I've been waiting on this round system and you finally made :D
@shinymarillmaster7275
@shinymarillmaster7275 5 ай бұрын
The people that are struggling, this script DOES WORK. The problem with this video is that he does not talk about ALL components. For example, there are some properties that must be ENABLED for this script to work. SOME OF THESE PROPERTIES ARE NOT MENTIONED (but displayed on the screen) THROUGH THE VIDEO. PAY ATTENTION TO EVERY SINGLE DETAIL ON HIS SCREEN. When he zooms in on properties MAKE SURE EVERYTHING IS RIGHT! When I first tried this I just skipped to the important parts and copied the script. DO NOT DO THAT. Watch the whole video and verify that everything is right. he may have enabled some properties that he didn't mention that are useful to making this.
@josiah756
@josiah756 3 ай бұрын
What is it then I’m too lazy to
@Marz-l9u
@Marz-l9u 2 ай бұрын
@@josiah756Then maybe u shouldn’t be a game dev.
@TratUsYT
@TratUsYT Ай бұрын
@@Marz-l9utrue
@tyghcoderxtreme8839
@tyghcoderxtreme8839 10 ай бұрын
This was a really clear and well explained tutorial thanks
@reallarwaz
@reallarwaz 2 жыл бұрын
Omg? Did you read my mind? I literally need this when I was doing my murder game! THX!
@Clippermakesgames
@Clippermakesgames Жыл бұрын
THANK YOU THANK YOU SOMUCH I WAS SEARCHING FOR A GOOOD ROUND SYSTEM TUTORIAL AND YOU SAVED THE DAY!!!!!!!!!
@JimmyGames-xi3slYT
@JimmyGames-xi3slYT Жыл бұрын
This Tutorial raleally helped, Thanks M8
@GamerM8
@GamerM8 Жыл бұрын
I'm glad it helped!
@UDUniverse
@UDUniverse 2 жыл бұрын
Yo, love your videos mate. Keep up the amazing work!
@unknownsignals2789
@unknownsignals2789 2 жыл бұрын
One of the only lua videos on youtube I understood!
@positivevibes4773
@positivevibes4773 2 жыл бұрын
TYSM I’ve been looking for one that worked and this one works keep up the good work
@nikitspa3199
@nikitspa3199 2 жыл бұрын
hi can u help
@nikitspa3199
@nikitspa3199 2 жыл бұрын
how to fix: local ClonedMap = ChosenMap:Clone()
@nikitspa3199
@nikitspa3199 2 жыл бұрын
chosenMap is not working
@positivevibes4773
@positivevibes4773 2 жыл бұрын
@@nikitspa3199 what does your chosen map equal?
@bannub3188
@bannub3188 2 жыл бұрын
TYSM I had no bugs coding this
@jallwthinks
@jallwthinks 2 жыл бұрын
i sadly did
@sigmamale417
@sigmamale417 Жыл бұрын
You deserved a sub! it perfectly works🎉
@brostudios7265
@brostudios7265 3 ай бұрын
Thank you for the tutorial, this worked good. Is there a way to make the round end when all the players have died (like an FFA game)?
@hBurkh
@hBurkh 5 ай бұрын
Thanks for video, after this video, I realised that I wrote so many line, when there is a short code that much.
@brt58theelder82
@brt58theelder82 Жыл бұрын
i just watched like 5 tutorials and they weren't working, after i watched this too, it worked!
@Cruz_reels
@Cruz_reels 3 ай бұрын
if you guys want to change the game time then all you have to do if find where he motioned the 10 second's until the game starts juts change that in the script!! if it docent work let me know, but id rather let gamerm8 help y'all.
@simmel-i6n
@simmel-i6n 23 күн бұрын
my time doesnt count down. do you maybe know why?
@Cruz_reels
@Cruz_reels 21 күн бұрын
@ ???
@RealArthurRBLX
@RealArthurRBLX Жыл бұрын
Hey Gamer M8! This video actually helped me make a sword fight game, where it picks a random map. This video was very helpful! :)
@Redquince
@Redquince 6 ай бұрын
Your too good at this keep up the great work 😀
@Yoda5742
@Yoda5742 Жыл бұрын
amazing tutorial! This will help with my Roblox game a lot! Thanks!
@GamerM8
@GamerM8 Жыл бұрын
Thanks, I'm glad I could help
@BuldsOffice
@BuldsOffice Жыл бұрын
@@GamerM8 Bro's replying to everyone saying thanks but not the people who need help. you became an L tbh.
@Sanderzz7
@Sanderzz7 2 жыл бұрын
worked thank you so much!
@GamerM8
@GamerM8 2 жыл бұрын
You're welcome!
@Jappley
@Jappley Жыл бұрын
I feel like I'm stupid. I try to figure this out for so long and I see your tutorial and its just so simple. I really don't get why I can't think of this in my brain.
@rower3995
@rower3995 11 ай бұрын
bro same
@rower3995
@rower3995 11 ай бұрын
there hasnt been 1 single tutorial that worked for me
@TruelyCloudiest
@TruelyCloudiest 2 ай бұрын
i love you so much for doing this omgggggggggg
@GamerM8
@GamerM8 2 ай бұрын
no problem!
@Mathsucksatnamingusernames
@Mathsucksatnamingusernames 2 жыл бұрын
Omg thank you this make me have an idea how I gonna make my game!!!
@rafaelyardy6638
@rafaelyardy6638 2 жыл бұрын
TYSM!!!
@battleproguy2858
@battleproguy2858 2 жыл бұрын
btw! NICE VIDEO! i like this video it helped me in my sword game
@usercodwarzonePS5
@usercodwarzonePS5 2 жыл бұрын
omg thank you so much for this tutorial really helped me earned a like!
@ShadowSunGamingYT
@ShadowSunGamingYT Жыл бұрын
OMG TY SO MUCH!!!
@KakaosHal202
@KakaosHal202 2 жыл бұрын
This is very useful for my game. Thank you!
@GamerM8
@GamerM8 2 жыл бұрын
No problem, I'm glad I'm able to help!
@beccaa365
@beccaa365 2 жыл бұрын
@@GamerM8 How do you make it so when you die in the round you respawn in the round until the round is over?
@ead91
@ead91 Жыл бұрын
@@GamerM8 Hey Gamer M8, This was a really nice tutorial but I'm missing a crucial part which is to make the round end after all players have died how could I do this?
@NubStuff
@NubStuff 2 жыл бұрын
Thank you nice upload! 😁
@GamerM8
@GamerM8 2 жыл бұрын
Thanks, I hope it helps!
@Unreal_Teal
@Unreal_Teal 2 жыл бұрын
HERE I LIKE THE VIDEO BTW KEEP UP THE GOOD JOB :)
@cdoythegamer4342
@cdoythegamer4342 2 жыл бұрын
Omg thank you I needed this for my game but how do you make it so the lobby destroys when the game starts and then clones when the game ends because I used this for my zombie game and when I died I spawn in the lobby in the game time so can you fix this?
@StupidPieceofcrap
@StupidPieceofcrap 2 жыл бұрын
Un-enabling the spawn point in the lobby using a script, Just use parent and scan if the thing is on replicated storage or server storage then un-enable it, Also just put another spawnpoint into the map that everyone spawns to. You can just clone the lobby and destroy the lobby, and the new lobby is gonna go to server storage and then add a wait time using a local script or something, Just move it to workspace, If this is kinda annoying to read then ask someone else lol, Im bad at giving help.
@cdoythegamer4342
@cdoythegamer4342 2 жыл бұрын
@@StupidPieceofcrap idk how
@Aw3s0me_cool
@Aw3s0me_cool 2 жыл бұрын
You just can make wall
@cdoythegamer4342
@cdoythegamer4342 2 жыл бұрын
@@Aw3s0me_cool ?
@rafaelyardy6638
@rafaelyardy6638 2 жыл бұрын
My game has 421k visits bc of u!
@TWOimcoolboisL
@TWOimcoolboisL 3 күн бұрын
How do you get the teleport block thingy?
@brawlerboi5194
@brawlerboi5194 2 жыл бұрын
Can you make a FPS game series
@giuyo
@giuyo 2 жыл бұрын
Looks helpful and looks working i should try this
@playgrad2463
@playgrad2463 2 жыл бұрын
This video was very helpful. But it would be cool if you make a round system, but the round ends if the killer kills all innocents kind of game!
@devfoll7381
@devfoll7381 2 жыл бұрын
Keep up the good work.👍
@GamerM8
@GamerM8 2 жыл бұрын
Thanks, I will do! 👍
@plague92
@plague92 4 ай бұрын
make sure your stuff is anchored otherwise itll fall out of the map and youll get an error code saying it doesnt exist
@jelmxrrr
@jelmxrrr Жыл бұрын
nevermind i fixed it i typed something wrong amazing video
@Chapapkoff
@Chapapkoff 2 жыл бұрын
Holy shit, It actually works!! Thank you so much man, I was looking for a video on this or i woukd have to pay $20 to get it done so thank you! (i will sub and like too)
@OmarDeezAlmond
@OmarDeezAlmond 6 ай бұрын
bro don't swear
@Chapapkoff
@Chapapkoff 6 ай бұрын
@@OmarDeezAlmond 🤓👆
@diceofchoiceX
@diceofchoiceX Жыл бұрын
OMG THANK YOU I GOT ANGRY CUZ IT WOULD NOT WORK BUT I FORGOT TO PUT S TO SOMETHING THANK YOUU
@GamerM8
@GamerM8 Жыл бұрын
No problem, I'm glad you were able to find and fix the problem too!
@deeptanshugupta6070
@deeptanshugupta6070 9 ай бұрын
Script 1 local Status = game.ReplicatedStorage:WaitForChild("Status") local Label = script.Parent:WaitForChild("TextLabel") Status:GetPropertyChangedSignal("Value"):Connect(function() Label.Text = Status.Value end) Script 2 --variables local Lobby = game.Workspace.Lobby local Maps = game.ReplicatedStorage.Maps:GetChildren() local Status = game.ReplicatedStorage.Status --Game Loop while true do --Intermission for i = 10, 0, -1 do Status.Value = "Intermission: "..i task.wait(1) end --Map Selector local ChosenMap = Maps[math.random(1, #Maps)] local ClonedMaps = ChosenMap:Clone() ClonedMap.Parent = game.Workspace Status.Value = "map: "..ClonedMap.Name task.wait(3) --Teleports To Map for i, player in pairs(game.Players:GetPlayers()) do local Chracter = player.Character if Chracter then local HumanoidRootPart = Chracter.HumanoidRootPart HumanoidRootPart.CFrame = ClonedMaps.TeleportPoint.CFrame end end --Game Time for i = 10, 0, -1 do --Change 10 for change gametime Status.Value = "Game: "..i task.wait(1) end --Teleports To Lobby for i, player in pairs(game.Players:GetPlayers())do local Chracter = player.Character if Chracter then local HumanoidRootPart = Chracter.HumanoidRootPart HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end end --Destroys Map ClonedMaps:Destroy() end ur welcome ;]
@MayooUTG
@MayooUTG 9 ай бұрын
ty
@Tennis_Art
@Tennis_Art 10 ай бұрын
tutorial is well made but only thing im missing is winning system so if all players got defeated by some person how to make it giving winner a win?
@amanallah4640
@amanallah4640 2 жыл бұрын
Cool video
@GamerM8
@GamerM8 2 жыл бұрын
Thanks!
@amanallah4640
@amanallah4640 2 жыл бұрын
@@GamerM8 you're welcome
@ch0c0999
@ch0c0999 Жыл бұрын
Hey m8 , idk if this is a problem in my script or if it is a general problem but i realised that if a player leaves the game while the map is spawned the whole script breaks and the map doesn't despawn , any help would be greatly appreciated!
@1CECUBE3ATERR
@1CECUBE3ATERR 3 ай бұрын
I have this same problem.
@whitebarr
@whitebarr 2 ай бұрын
if anyone is having this problem with the line HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame encase it with this if statement if HumanoidRootPart ~= nil then HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end it checks that the humanoid root part is still actually there
@jediunknown1192
@jediunknown1192 2 жыл бұрын
I did all of it and only the intermission timer works
@SukunaIsCold
@SukunaIsCold Жыл бұрын
Honestly 'M8' thx alot, school is honestly annoying so after i come back i watch your tutorials and honestly this tutorial rlly helped me with my game! Thank you!
@God_scarqqplayz7
@God_scarqqplayz7 4 ай бұрын
what do u use for teleporter block? a part or a spawnlocation
@GamerM8
@GamerM8 4 ай бұрын
its just a part
@MonsterMelodyMix
@MonsterMelodyMix 4 ай бұрын
@@GamerM8how do u script it
@beyourself182
@beyourself182 2 жыл бұрын
Thank you so much for the tutorial! Love your videos, Oh and can you make an npc if you die to, it copies your avatar or someone's avatar?
@capcakeyt5399
@capcakeyt5399 2 жыл бұрын
Bruh he literally just uploaded💀
@beyourself182
@beyourself182 2 жыл бұрын
@@capcakeyt5399 I literally was here instantly when it uploaded
@capcakeyt5399
@capcakeyt5399 2 жыл бұрын
@@beyourself182 that doesnt mean you watched the whole vid
@beyourself182
@beyourself182 2 жыл бұрын
@@capcakeyt5399 its Literally easy wym
@thesmiley5171
@thesmiley5171 Жыл бұрын
Hello M8, i need your help... If i have one map did i need to do the map selector ? And also i need the round to end when all players are dead
@EDevv
@EDevv 2 жыл бұрын
Your video are so easy to follow
@dusanpavlovic5253
@dusanpavlovic5253 Жыл бұрын
Thank you bro so much you gain a like
@Dj_Hugorose
@Dj_Hugorose Жыл бұрын
hey so I did everything correct but it only joins me to the one map even though i have three maps and then when im in that map and the timer is out it doesn't teleport me back. Can u help?
@dyl_editscars
@dyl_editscars 11 ай бұрын
yo, how do I make it so there are multiple spawn points on each map and one player spawns on each of them, kind of like horrific housing
@dungxz
@dungxz 2 жыл бұрын
YO HI
@Jzonroblox
@Jzonroblox 8 ай бұрын
How do I make it a certain time where players get swords so they can fight and there’s a winner
@FuriousWolfYT
@FuriousWolfYT 2 жыл бұрын
Hi nice vid
@djkraan
@djkraan 2 жыл бұрын
Hey Gamer M8! Can you make a tut where you can also show who won in that round?
@razzblox3610
@razzblox3610 2 жыл бұрын
Tysm! Btw can you re-do your simulator series?
@planeetjulian741
@planeetjulian741 2 жыл бұрын
Yeaaah
@dirtslinger1017
@dirtslinger1017 2 жыл бұрын
can you make x2 cash or kills gamepass, that would really help my game thanks for the awesome video as well!
@purpletom_yt3138
@purpletom_yt3138 Жыл бұрын
Wow thx! It works now!
@shawn_drawz1267
@shawn_drawz1267 2 жыл бұрын
Thank you it was very useful! Nice video! But I have a problem what do I do if I want to put multiple teleportation points?
@unknownsignals2789
@unknownsignals2789 2 жыл бұрын
You only need 2 points to teleport between the lobby and the map. He was explaining a different style game.
@Cashier191
@Cashier191 2 жыл бұрын
local Status = game.ReplicatedStorage:WaitForChild("Status") local Label = script.Parent:WaitForChild("TextLabel") Status:GetPropertyChangedSignal("Value"):Connect(function() Label.Text = Status.Value end)
@beccaa365
@beccaa365 2 жыл бұрын
Change the first label to Label because it is wrong
@ViperXD_
@ViperXD_ 2 жыл бұрын
what about the second one please
@tangaitv
@tangaitv 2 жыл бұрын
@@beccaa365 wdym
@jamesparr5308
@jamesparr5308 2 жыл бұрын
can u add the second one pls
@JustUr_RegularPerson
@JustUr_RegularPerson Жыл бұрын
LIFE SAVER!
@TonyPrints
@TonyPrints 2 жыл бұрын
--variebles local Lobby = game.Workspace.Lobby local Maps = game.ReplicatedStorage.Maps:GetChildren() local Status = game.replicatedStorage.Status -- Game Loop while true do --Intermission for i = 10, 0, -1 do Status.Value = "intermission: "..i task.wait(1) end --Map Selector local chosenmap = Maps[math.random(1, #Maps)] local chosenmap = ChosenMap:Clone() Clonedmap.Parent = game.Workspace Status.Value = "Map: "..ClonedMap.Name task.Wait(3) --Teleports to Map for i, Player in pairs(game.Players:getPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = Clonedmap.TeleportPoint>CFrame end end -- Game Time for i = 10, 0, -1 do Status.Value = "Game: "..i task.Wait(1) end -- Teleports to Lobby for i, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end end -- Destroys Map clonedMap:Destroy() end
@TonyPrints
@TonyPrints 2 жыл бұрын
whats wrong with it i cant tell
@ViperXD_
@ViperXD_ 2 жыл бұрын
@@TonyPrints idk too
@H2610_
@H2610_ Жыл бұрын
Kind of a late answer, but you did some mistakes copying the script, capital letters matter and you have some missing, this script wont work like this
@Bloxxxed
@Bloxxxed 11 ай бұрын
this code is correct local Status = game.ReplicatedStorage:WaitForChild("Status") local Label = script.Parent:WaitForChild("TextLabel") Status:GetPropertyChangedSignal("Value"):Connect(function() Label.Text = Status.Value end) -- Variables local Lobby = game.Workspace.Lobby local Maps = game.ReplicatedStorage.Maps:GetChildren() local Status = game.ReplicatedStorage.Status -- Game Loop while true do -- Intermission for i = 10, 0, -1 do Status.Value = "Intermission: " .. i task.wait(1) end -- Map Selector local ChosenMap = Maps[math.random(1, #Maps)] local ClonedMap = ChosenMap:Clone() ClonedMap.Parent = game.Workspace Status.Value = "Map: " .. ClonedMap.Name task.wait(1) -- Teleport to map for _, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = ClonedMap.TeleportPoint.CFrame end end -- Game Time for i = 10, 0, -1 do Status.Value = "Game: " .. i task.wait(1) end for _, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character.HumanoidRootPart HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end end -- Destroys Map ClonedMap:Destroy() end
@cladaxeyt
@cladaxeyt 11 ай бұрын
@@Bloxxxed hi i have a question about it.When i play the game everything works fine but when the game timer ends nothing happens is there any way to fix that?
@simmel-i6n
@simmel-i6n 23 күн бұрын
hello gamer m8 my game timer doesnt count down and that means my game round never ends can u tell me why?
@christiankim5904
@christiankim5904 Жыл бұрын
I struggle to make my character spawn in the lobby when I test the game
@lukeahn0330
@lukeahn0330 10 ай бұрын
if the round script isn't working try this one, I polished it: local Lobby = game.Workspace.Lobby local Maps = game.ReplicatedStorage.Maps:GetChildren() local Status = game.ReplicatedStorage.Status while true do for i = 20, 0, -1 do Status.Value = "Intermission: " .. i task.wait(1) end local ChosenMap = Maps[math.random(1, #Maps)] local ClonedMap = ChosenMap:Clone() ClonedMap.Parent = game.Workspace Status.Value = "Map: " .. ClonedMap.Name task.wait(3) for _, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character:FindFirstChild("HumanoidRootPart") if HumanoidRootPart then HumanoidRootPart.CFrame = ClonedMap.TeleportPoint.CFrame end end end for i = 20, 0, -1 do Status.Value = "Game: " .. i task.wait(1) end for _, Player in pairs(game.Players:GetPlayers()) do local Character = Player.Character if Character then local HumanoidRootPart = Character:FindFirstChild("HumanoidRootPart") if HumanoidRootPart then HumanoidRootPart.CFrame = Lobby.TeleportPoint.CFrame end end end ClonedMap:Destroy() end
@notdigzzi
@notdigzzi 7 ай бұрын
Holy smokes dude! Gotta say thank you very much!
@dragonslayer8517
@dragonslayer8517 2 ай бұрын
dang this works, I just cant get it to teleport me...
@Goose88
@Goose88 Ай бұрын
oh my god you saved me
@snipurryt3089
@snipurryt3089 2 жыл бұрын
Hey man can you teach us on how to make a teleport system when you touch a part thing it will show a cutscenes while counting down to teleport you please
@MichaelJohnTombaga
@MichaelJohnTombaga 10 ай бұрын
How do I make the timer intro minutes? instead of it being seconds
@AdoWo29
@AdoWo29 2 жыл бұрын
Hello Gamer M8 I like your videos and I would like to know how to make a character selector, for example: A wizard with a cat head and a Viking astronaut and that each character has different objects Example the Wizcat has a cane and the Astroviking an axe
@mrrobot4951
@mrrobot4951 2 жыл бұрын
Repeat coment
@yeahjacob12
@yeahjacob12 8 ай бұрын
i just watch these for fun
@Spiiln
@Spiiln 2 жыл бұрын
I can't get this to work. Every time I click start it says: TeleportPoint is not a valid member of Model "Workspace.Industrial"
@TheLetterB0X
@TheLetterB0X 2 жыл бұрын
Did you anchor the teleport point?
@BenPotterbp
@BenPotterbp 2 жыл бұрын
Same with me :(
@TheLetterB0X
@TheLetterB0X 2 жыл бұрын
lol you wrote it wrong
@retroAIO
@retroAIO Ай бұрын
Put the teleport point inside of the industrial
@mrmeme_official
@mrmeme_official 8 ай бұрын
Hey m8, i love this tutorial it works really well, but can you teach us how to make a winner in the round system?
@marci2335
@marci2335 2 жыл бұрын
Hey m8, i tried this out although i didn't know how to find a teleport point. Could you explain or make a video on how to get the teleport points like you did?
@GamerM8
@GamerM8 2 жыл бұрын
They're just normal parts that have been renamed to "TeleportPoint"
@MJbeCubing
@MJbeCubing 2 жыл бұрын
You should make a military border game tutorial series Love your videos btw.
How to make a Rebirth System in Roblox Studio
9:22
Gamer M8
Рет қаралды 40 М.
Can 6 DEVS Make a STORY Game Without Communicating?
15:32
RoDev
Рет қаралды 2,6 МЛН
Одну кружечку 😂❤️
00:12
Денис Кукояка
Рет қаралды 1,2 МЛН
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 14 МЛН
Can I Make a VIRAL Roblox Game in 1 Hour?
15:16
Temprist
Рет қаралды 6 МЛН
I Made a Fake Warning to Scare Roblox Players
16:31
ByteBlox
Рет қаралды 1,8 МЛН
I Made a Roblox Obby That's Secretly a Horror Game
4:48
Pluto
Рет қаралды 2 МЛН
Doing Your Roblox Speedrunning Challenges
10:36
Remainings
Рет қаралды 804 М.
The Free KJ Incident, and how it got Roblox involved.
13:04
theholygrail75
Рет қаралды 1,3 МЛН
Nobody could find this ROBLOX badge. (until now)
13:05
Feodoric
Рет қаралды 633 М.
I Learned How to BUILD in 3 DAYS | Roblox
6:46
Simjet
Рет қаралды 73 М.
Roblox Items You'll NEVER Get..
16:55
BulletWarning
Рет қаралды 1,1 МЛН
Can 6 DEVS Make a TYCOON Game Without Communicating?
12:59
RoDev
Рет қаралды 1,1 МЛН
I made a TOWER DEFENSE Game in Roblox...
8:09
Gamer M8
Рет қаралды 422 М.
Одну кружечку 😂❤️
00:12
Денис Кукояка
Рет қаралды 1,2 МЛН