I do not what to do in this situation, help would be great..
`local random = game.Workspace.WinSounds local selectrandom = math.random(1,3) script.Parent.Touched:Connect(function(hit) local h = hit.Parent:FindFirstChild("Humanoid") if (h~=nil) then local selected = random:GetChildren() local final = selected(selectrandom) final:Play() game.ReplicatedStorage.vals.Winner.Value = hit.Parent.Name script.Parent:Destroy() end end)`