Idk how to make it dont stuck. I made my own part, it adds in my inventory, but when i put it out it just stuck in its spawn.
There is a script:
local tool = game.ServerStorage.Tablet
local giver = script.Parent
local canGive = false
local function GiveTool(player)
if canGive == false then canGive = true local clone = tool:Clone() clone.Parent = player.Backpack wait(1) canGive = false end
end
giver.ClickDetector.MouseClick:Connect(function(player)
GiveTool(player)
end)
First, I don't think you should make 2 questions for the same thing, and second, you should check Tool's handle and it's children(there is something inside the tool that makes it stuck in it's position)