'Attempt to index number with 'Clone'' error occuring in my math.random script?
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
02 | local intermissionLenth = 6 |
03 | local InRound = game.ReplicatedStorage.InRound |
04 | local Status = game.ReplicatedStorage.Status |
06 | local LobbySpawn = game.Workspace.Lobby.LobbySpawn |
07 | local GameAreaSpawn = game.Workspace.GameTPPart |
09 | InRound.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 |
16 | for _, player in pairs (game.Players:GetPlayers()) do |
17 | local char = player.Character |
18 | char.Humanoid.WalkSpeed = 30 |
19 | char.HumanoidRootPart.CFrame = GameAreaSpawn.CFrame |
22 | if InRound.Value = = false then |
23 | for _, player in pairs (game.Players:GetPlayers()) do |
24 | local char = player.Character |
25 | char.Humanoid.WalkSpeed = 16 |
26 | char.HumanoidRootPart.CFrame = LobbySpawn.CFrame |
32 | local function roundTimer() |
34 | for i = intermissionLenth, 1 , - 1 do |
37 | Status.Value = "Intermission: " .. i .. " Seconds Left!" |
39 | for i = roundLenth, 1 , - 1 do |
42 | Status.Value = "Game Time: " .. i .. " Seconds Left!" |
And the error part was
1 | local 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?