** i just try to make 2-10 players teleport to random location in the specific map but it got Locator is not valid member of Model
here is the script that i got problem
1 | if character then |
2 |
3 | -- Teleport them |
4 |
5 | local num = math.random( 1 , 10 ) |
6 |
7 | player.character.Head.CFrame = CFrame.new(workspace.Desert. [ "Locator..num" ] .Position) -- this is what problem i got. |
8 |
9 | table.remove(AvailableSpawnPoints, 1 ) |
and the rest of script is. [there may have more problems]
001 | -- Define variables |
002 |
003 | |
004 |
005 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
006 |
007 | |
008 |
009 | local ServerStorage = game:GetService( "ServerStorage" ) |
010 |
011 | |
012 |
013 | local MapsFolder = ServerStorage:WaitForChild( "Maps" ) |
014 |
015 | |
016 |
017 | local Status = ReplicatedStorage:WaitForChild( "Status" ) |
018 |
019 | |
020 |
021 | local GameLength = 60 |
022 |
023 | |
024 |
025 | local AmountOfPlayersRequired = 2 |
026 |
027 | |
028 |
029 | -- Game loop |
030 |
031 | |
032 |
033 | while true do |
034 |
035 | Status.Value = "Waiting for enough players" |
036 |
037 | repeat wait( 1 ) until game.Players.NumPlayers > = AmountOfPlayersRequired |
038 |
039 | Status.Value = "Intermission" |
040 |
041 | wait( 1 ) |
042 |
043 | local plrs = { } |
044 |
045 | for i, player in pairs (game.Players:GetChildren()) do |
046 |
047 | if player then |
048 |
049 | table.insert(plrs,player) --Add each player into plrs table |
050 |
051 | end |
052 |
053 | end |
054 |
055 | wait( 2 ) |
056 |
057 | local AvailabeMaps = MapsFolder:GetChildren() |
058 |
059 | local ChosenMap = AvailabeMaps [ math.random( 1 ,#AvailabeMaps) ] |
060 |
061 | Status.Value = ChosenMap.Name.. " Chosen" |
062 |
063 | local ClonedMap = ChosenMap:Clone() |
064 |
065 | ClonedMap.Parent = workspace |
066 |
067 | -- Teleport players to the map |
068 |
069 | local SpawnPoints = ClonedMap:FindFirstChild( "Locator" ) |
070 |
071 | if not SpawnPoints then |
072 |
073 | print ( "SpawnPoints not found!" ) |
074 |
075 | end |
076 |
077 | local AvailableSpawnPoints = game.Players:GetChildren() |
078 |
079 | local player = game.Players:GetChildren() |
080 |
081 | for i, player in pairs (plrs) do |
082 |
083 | if player then |
084 |
085 | character = player.Character |
086 |
087 | if character then |
088 |
089 | -- Teleport them |
090 |
091 | local num = math.random( 1 , 10 ) |
092 |
093 | player.character.Head.CFrame = CFrame.new(workspace.Desert. [ "Locator..num" ] .Position) |
094 |
095 | table.remove(AvailableSpawnPoints, 1 ) |
096 |
097 | |
098 |
099 | --Give them a sword |
100 |
101 | local Sword = ServerStorage.Sword:Clone() |
102 |
103 | Sword.Parent = player.Backpack |
104 |
105 | local GameTag = Instance.new( "BoolValue" ) |
106 |
107 | GameTag.Name = "GameTag" |
108 |
109 | GameTag.Parent = player.Character |
110 |
111 | else |
112 |
113 | -- There is no Character |
114 |
115 | if not player then |
116 |
117 | table.remove(plrs,i) |
118 |
119 | end |
120 |
121 | end |
122 |
123 | end |
124 |
125 | end |
126 |
127 | Status.Value = "Get ready to play!" |
128 |
129 | wait( 3 ) |
130 |
131 | for i = GameLength, 0 ,- 1 do |
132 |
133 | for x, player in pairs (plrs) do |
134 |
135 | if player then |
136 |
137 | character = player.Character |
138 |
139 | if not character then |
140 |
141 | --Left the game |
142 |
143 | table.remove(plrs,x) |
144 |
145 | print (player.Name.. " have been left the game" ) |
146 |
147 | Status.Value = player.Name.. " have been left the game" |
148 |
149 | else |
150 |
151 | if character:FindFirstChild( "GameTag" ) then |
152 |
153 | -- They are still alive |
154 |
155 | print (player.Name.. " is still in the game!" ) |
156 |
157 | else |
158 |
159 | -- They are dead |
160 |
161 | table.remove(plrs,x) |
162 |
163 | print (player.Name.. " has been removed!" ) |
164 |
165 | end |
166 |
167 | end |
168 |
169 | else |
170 |
171 | table.remove(plrs,x) |
172 |
173 | print (player.Name.. " has been removed!" ) |
174 |
175 | end |
176 |
177 | end |
178 |
179 | Status.Value = "There are " ..i.. " seconds remaining, and " ..#plrs.. " players left" |
180 |
181 | if #plrs = = 1 then |
182 |
183 | -- Last person standin |
184 |
185 | Status.Value = "The winner is " ..plrs [ 1 ] .Name |
186 |
187 | break |
188 |
189 | elseif #plrs = = 0 then |
190 |
191 | Status.Value = "Nobody won!" |
192 |
193 | break |
194 |
195 | elseif i = = 0 then |
196 |
197 | Status.Value = "Time up!" |
198 |
199 | break |
200 |
201 | end |
202 |
203 | wait( 1 ) |
204 |
205 | end |
206 |
207 | print ( "End of game" ) |
208 |
209 | for i, player in pairs (game.Players:GetPlayers()) do |
210 |
211 | character = player.Character |
212 |
213 | if not character then |
214 |
215 | --Ignore them |
216 |
217 | else |
218 |
219 | if character:FindFirstChild( "GameTag" ) then |
220 |
221 | character.GameTag:Destroy() |
222 |
223 | end |
224 |
225 | if player.Backpack:FindFirstChild( "Sword" ) then |
226 |
227 | player.Backpack.Sword:Destroy() |
228 |
229 | end |
230 |
231 | if character:FindFirstChild( "Sword" ) then |
232 |
233 | character.Sword:Destroy() |
234 |
235 | end |
236 |
237 | end |
238 |
239 | player:LoadCharacter() |
240 |
241 | end |
242 |
243 | ClonedMap:Destroy() |
244 |
245 | Status.Value = "Game ended" |
246 |
247 | wait( 2 ) |
248 |
249 | |
250 |
251 | end |
EDIT: well it actually exist model just exist but i want the script to teleport player to random locator from 1 to 10 but it said locator is not valid member of model
You’ve attempted to concatenate
within a string, however you must do this outside of it, else it will just be one big string.
Also, ensure that the ‘Locator’ model is inside the model that you are cloning.
Additionally, you’re moving the position of the player’s head, when you should be using their HumanoidRootPart
.
Change this:
1 | player.character.Head.CFrame = CFrame.new(workspace.Desert. [ "Locator..num" ] .Position) |
To this:
1 | player.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.Desert [ "Locator" ..num ] .Position) |
You should read up more on how concatenation
works, to familiarize yourself with it in the future.
Happy scripting!