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

'Attempt to index number with 'Clone'' error occuring in my math.random script?

Asked by 4 years ago

So i have a parkour script that loads a different parkour map from a folder in server storage that moves it to workspace and moves the position. But im getting the error 'Attempt to index number with 'Clone' '. So the script is

01local roundLenth = 35
02local intermissionLenth = 6
03local InRound = game.ReplicatedStorage.InRound
04local Status = game.ReplicatedStorage.Status
05 
06local LobbySpawn = game.Workspace.Lobby.LobbySpawn
07local GameAreaSpawn = game.Workspace.GameTPPart
08 
09InRound.Changed:Connect(function()
10    if InRound.Value == true then
11        local Item = game.ServerStorage.Obbys:GetChildren()
12        local randomItem = math.random(#Item)
13        local clonedobby randomItem:Clone()
14        clonedobby.Parent = workspace
15        clonedobby.ObbyStart.CFrame = GameAreaSpawn.CFrame
View all 47 lines...

And the error part was

1local Item = game.ServerStorage.Obbys:GetChildren()
2        local randomItem = math.random(#Item)
3        local clonedobby randomItem:Clone()
4        clonedobby.Parent = workspace
5        clonedobby.ObbyStart.CFrame = GameAreaSpawn.CFrame

so for some reason its attempting to index a number with clone? Is it a punctuation error or is it completely wrong?

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago
1local randomItem = math.random(#Item)

means the number, consider using

1local randomItem = Item[math.random(1, #Item)]
Ad

Answer this question