How to make tool that spawns a model (INFO IN COMMENTS!)

Alright, Like the title said, I wanna make a tool that spawns a model BUT, I also want to make spawning the model and can aim it, 1 last thing, I tried this on a car tool, basically make an animation of it spawning, I hope you can help, tried most solutions already but they don’t work, also here is the script for the spawn animation:
Includes:
s

local set = script.Settings
local sp = set.Speed
local enabled = set.Enabled
local hum = script.Parent:WaitForChild(“Humanoid”)
if hum then
print(“Success”)
else
print(“No Humanoid”)
end
local humanim = hum:LoadAnimation(script:FindFirstChildOfClass(“Animation”))

–Playing Animation–
if enabled.Value == true then
humanim:Play()
humanim.Looped = true
humanim:AdjustSpeed(sp.Value)
end