Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Snap the 3D model in FRONT of the frame?

Asked by 9 years ago

Hi guys! I'm using Clonetrooper1019's 3D Gui Module, however I cannot get the model IN front of more than 1 frame (i.e in a shop) is there anyway to do this? At the moment I have this hierarchy:

-Frame -Frame -Local script

The local script is:

module3D = require(script.Parent.Module3D)
frame = script.Parent.Frame
guy = game.Workspace.Skins.AstraKnife
model3D = module3D:Attach3D(frame,guy)
model3D:SetActive(true)
game:GetService("RunService").RenderStepped:connect(function()
    local fullrotation = math.pi*2
    local currentrotation = tick()%fullrotation
    model3D:SetCFrame(CFrame.Angles(0,currentrotation,0))
end)

Thanks

0
0
Yeah! I followed that whole tutorial, but it didn't say anything about putting the model in front of the frame :( jjwood1600 215 — 9y
0
I had the same question, I decided to try to understand how 3D Modeling works. You should try to understand it first so you could figure it out. FutureWebsiteOwner 270 — 9y

Answer this question