Hi!.I didn’t know how to name this, so here i put you in context. I’m trying to make a Car Spawn Button, but I can’t figure out why this happends.
Example Video robloxapp-20201110-2310589.wmv (4.1 MB)
This is the script that the button uses.
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:Connect(function()
local clone = game.ReplicatedStorage:FindFirstChild("ButterFly"):Clone()
clone:SetPrimaryPartCFrame(player.Character.HumanoidRootPart.CFrame + Vector3.new(15,0,0))
clone.Parent = game.Workspace
clone:MakeJoints()
end)