I want to try to convert this script to FE(so it works with FE on) but I have no idea how, does anyone have any guides or anything like that?
wait() local parts = {} for _,part in pairs(game.Workspace.podss:GetChildren()) do table.insert(parts,part) end for _,plr in pairs(game.Players:GetPlayers()) do local partchosen = parts[math.random(1,#parts)] local char = plr.Character or plr.CharacterAdded:wait() char.HumanoidRootPart.CFrame = partchosen.CFrame for i,part in pairs(parts) do if part == partchosen then table.remove(parts,i) end end end
anything helps!