if chosen.Name == "Bee" then
local bee = beefolder:FindFirstChild("Bee"):Clone()
bee.Parent = game.Workspace.Bee.Bees
bee:SetPrimaryPartCFrame(chosenS.CFrame)
local Model = bee
local Goal = chosenE.CFrame
local Info = TweenInfo.new(10)
local CF_value = Instance.new("CFrameValue")
CF_value.Changed:Connect(function(V)
Model:PivotTo(V)
end)
CF_value.Value = Model:GetPivot()
local Tween = game:GetService("TweenService"):Create(CF_value, Info, {Value = Goal})
Tween:Play()
end
end