Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Locator is not valid member of Model?

Asked by 6 years ago
Edited 6 years ago

** 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

1if character then
2 
3-- Teleport them
4 
5local num = math.random(1, 10)
6 
7player.character.Head.CFrame = CFrame.new(workspace.Desert.["Locator..num"].Position) -- this is what problem i got.
8 
9table.remove(AvailableSpawnPoints,1)

and the rest of script is. [there may have more problems]

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

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

0
The error means that locator does not exist in the model. Thesquid13 301 — 6y
0
but it actually exist. Somone_exe 224 — 6y

1 answer

Log in to vote
0
Answered by
awfulszn 394 Moderation Voter
6 years ago
Edited 6 years ago

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:

1player.character.Head.CFrame =  CFrame.new(workspace.Desert.["Locator..num"].Position)

To this:

1player.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!

0
That's not the problem. DeceptiveCaster 3761 — 6y
0
He left a comment in his script claiming it to be his problem, awfulszn 394 — 6y
0
Nice. Problem Solved! Somone_exe 224 — 6y
0
Great! Happy developing! awfulszn 394 — 6y
Ad

Answer this question