Wait I have an Idea. In the server script, on the line that says the following. I was wondering if the problem is that the Bomb Spawns in the middle of the baseplate. Also, enable the Motor6
local pos = player.Character:GetPrimaryPartCFrame()
maybe try this instead?
local pos = player.Character:GetPrimaryPartCFrame * CFrame.new(0,5,0)
--will position them 5 studs higher
Hmm, I suck with Frames, give me a minute to look up how to add Frames. I’m going to throw out multiple ideas, can you see if any of them don’t error. Yes first try what @FracturedSoftware said, he is correct.
1. local pos = player.Character:GetPrimaryPartCFrame + Vector3.new(0,5,0)
2. local pos = CFrame.new(player.Character:GetPrimaryPartCFrame + Vector3.new(0,5,0))