Strange this isnt working? Simple Concatenation Loop
Asked by
6 years ago Edited 6 years ago
04 | function StarterLoop() |
05 | if sc < = StarterMax then |
01 | function StarterPatchGrow() |
02 | math.randomseed(tick()) |
03 | local _x = UnnamedModels:GetChildren() |
04 | local x = _x [ math.random( 1 ,#_x- 2 ) ] |
05 | local _y = x:GetChildren() |
06 | local y = _y [ math.random( 1 ,#_y) ] |
07 | local Value = GetValue(y, "Unnamed" ) |
08 | local RealModel = y:Clone() |
09 | RealModel.Parent = StarterPatch.SpawnedPumpkins |
10 | RealModel.Position = Vector 3. new(math.random(StarterPatch.MinX.Value,StarterPatch.MaxX.Value),math.random(StarterPatch.MinY.Value,StarterPatch.MaxY.Value),math.random(StarterPatch.MinZ.Value,StarterPatch.MaxZ.Value)) |
11 | local PumpkinLabel = game.ReplicatedStorage.LoadModels.UI.PumpkinLabel:Clone() |
12 | PumpkinLabel.Adornee = RealModel |
13 | PumpkinLabel.Parent = RealModel |
14 | PumpkinLabel.Frame.Nickname.Text = 'Name : ' ..RealModel.Name |
15 | PumpkinLabel.Frame.Rarity.Text = 'Rarity : ' ..x.Name |
16 | PumpkinLabel.Frame.PumpkinValue.Text = 'Value : ' ..Value |
The loop will continue to print 1, anyone know why?