My model is from a required module also uploaded to roblox and this happens https://i.imgur.com/tYDNzlJ.png
Module ID is 5939559857
Main script:
--Without this script the van may not function as intended! local icecream = script.Main.Icecream local detector = script.Main.Van.Dispenser.Button.ClickDetector detector.MouseClick:Connect(function(plr) local clone = icecream:Clone() clone.Handle.Anchored = false clone.Parent = plr.Backpack end)
MainModule:
local module = {} local main = function() script:WaitForChild("Vanfunctions") local dog = "dog" script.Vanfunctions.Disabled = false script.Vanfunctions.Parent = workspace end return main
How the module was required
ServerScript:
wait(2) local req = require(5939559857) wait(1) req()
You need to add weld to your model Also unanchor the model because it stays still on the air If you don't know how to weld you can watch this video: https://www.youtube.com/watch?v=LEy0po6sLso