Created a script this morning to load a cylinder with an attached script, however the material does not seem to load for the cylinder, or a cone, shaped CSG. Spheres and boxes load without issue. Not really sure why the materials are not loading, but I am hoping someone could clear this up.
function Script:Use(entity)
local bottle = Model:Cylinder()
local material = Material:Load("Materials/Developer/bluegrid.mat")
bottle:SetMaterial(material)
bottle:SetScale(0.15,0.65,0.15)
bottle:SetPosition(-4.4,1.6,1.9)
local shape = Shape:Cylinder()
bottle:SetShape(shape)
bottle:SetMass(1)
bottle:SetScript("Scripts/Functions/PickupHealth.lua")
end