So I had the idea to make a functioning book which does sound fun, but I have this little error and I just can't figure it out. So I'm on the bottom of the barrel and needing someones help with this
(Image showing Bug) (http://drive.google.com/file/d/1pSvWnoqhQthOmdiwltmfEq0Jo27E_qr5/view?usp=sharing)
(If link is blocked then I'll give some details, the words on the blocks are just floating on midair and when I pull out the tool, it just stays there)
This happens when I put the Tool in the StarterPack and then that happens.
And also this is about scripting, which one do I use? Orientation or CFrame in my script?
local Title = script.Parent.Title local Tool = script.Parent Tool.Activated:Connect(function() Title.Orientation = Vector3.new("Some numbers to put here Idk") end)
or do I do this?
local Title = script.Parent.Title local Tool = script.Parent Tool.Activated:Connect(function() Title.Cframe = Cframe.new("Cool Numbers here") end)
(And yes I know that the first question is not about scripting but I really want to know how to fix it)