SurfaceGui's on Tools? and plus rotating questions? [Solved]
Asked by
5 years ago Edited 5 years ago
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?
1 | local Title = script.Parent.Title |
2 | local Tool = script.Parent |
4 | Tool.Activated:Connect( function () |
5 | Title.Orientation = Vector 3. new( "Some numbers to put here Idk" ) |
or do I do this?
1 | local Title = script.Parent.Title |
2 | local Tool = script.Parent |
4 | Tool.Activated:Connect( function () |
5 | Title.Cframe = Cframe.new( "Cool Numbers here" ) |
(And yes I know that the first question is not about scripting but I really want to know how to fix it)