I am trying to create a minigame sort of thing, so I want all players to start in the lobby, wait a certain amount of time and then be teleported to a randomly chosen map, but I want one specific player chosen at random to be turned invisable, if the smoke particle on their torso and then have it so that anyone they touch dies. Once a player who is not the one with the smoke particles touches a specific block it will display that that player won and then teleport everyone back to the lobby and start over.
If that makes any sense. So this is what I have so far, I am still learning so bare with me.
01 | while true do |
02 | wait( 5 ) |
03 | m = Instance.new( "Message" ) |
04 | local players = game.Players:GetChildren() |
05 | local num = math.random( 1 , 1 ) |
06 | if num = = 1 then |
07 | m.Parent = game.Workspace |
08 | m.Text = "Choosing Map..." |
09 | wait( 4 ) |
10 | m.Text = "Map Number " ..num.. " Was Chosen" |
11 | wait( 3 ) |
12 | m.Text = "[MAP NAME]; Maker: [MAP MAKER NAME]" |
13 | wait( 3 ) |
14 | m.Text = "You Have 3 Minutes." |
15 | wait( 3 ) |
Any help will be greatly appreciated thanks :)
I think this is what you mean, You'll have to do the particle part which is listed in the script in the :GetChildren() Part, If you don't understand how to do the particle part I can do it if you like, (Just comment), I have listed what I have added/changed in the script in '--' just giving information on some of the events being triggered; nonetheless, here is the script.
01 | local Transparency_Amount = . 7 -- Change this to how transparent you want the bodyparts. |
02 |
03 | local function Restart(m) -- Made this into a function (m) means the Message. |
04 | game.Workspace.Map 1 :Remove() . |
05 | m.Parent = game.Workspace |
06 | m.Text = "Game over! Thank you for playing!" |
07 | wait( 3 ) |
08 | m.Text = "You have 1 minute until the start of the next game." |
09 | wait( 3 ) |
10 | m.Parent = nil |
11 | m:Remove() |
12 | end |
13 |
14 | while true do |
15 | wait( 5 ) |
Hope this helped, feel free to ask questions!
I hope this code will help. It use :GetPlayers() and then pick a random player from the table that it makes. So it makes it random, I would recommend having it spawn everyone to the map then pick the Killer and spawn him to his spot. It less complex because if you spawn him first you will need make code that will need make him not spawn with the others. So by spawning him with the players then spawning him again to his spot it make it more easy to spawn him and the other people who playing.
1 | function Killer_Pick() |
2 | print ( 'Picking MadTrapper' ) |
3 | local randomPlayer = game.Players:GetPlayers() |
4 | local Killer = math.random( 1 ,#game.Players:GetPlayers()) |
5 | -- Do what ever make him invisible here and spawn him |
6 | end |