The Building Support sub-category is intended for all development support relating to architecture on the Roblox platform. This includes questions ranging in difficulty from extremely basic to even the most technical of issues.
You may present your thread how you choose, but you are required to answer the following questions in your thread;
What are you attempting to achieve? (Keep it simple and clear)
I want the burger on a stick to face straight up with the burger in the air
What is the issue? (Keep it simple and clear - Include screenshots/videos/GIFs if possible)
I have no idea how to do it and actually have a screenshot
What solutions have you tried so far? (Have you searched for solutions through the Roblox Wiki yet?)
None, because I don’t know what to search on youtube, google, or the dev forum
You may then include any further details.
Put a Script in your tool,(NotLocalScript) then Copy and Paste this.
local tool = script.Parent
–Creating Weld!–
for _, v in pairs(tool:GetDescendants()) do
if v:IsA(“BasePart”) then
local weld = Instance.new(“ManualWeld”)
weld.C0 = tool.Handle.CFrame:Inverse() * v.CFrame
weld.Part0 = tool.Handle
weld.Part1 = v
weld.Parent = v
end
end
–Fixing tool if anchored–
for _, v in pairs(tool:GetDescendants()) do
if v:IsA(“BasePart”) then
v.Anchored = false
end
end
I never made a script; I don’t know a whole lot about scripting, only the bare basics like functions and variables and I only know the basics of even those