I’m trying to make a game where you play Jenga with your friends but whenever you start the game, The jenga tower moves a bit. How do I make it so that it’s upright when the game starts?
2 Likes
Hey there!
Have you tried anchoring your parts and then unanchoring it with a script like:
local JengaBlock = workspace.[YourPart]
local StartButton = --Start button path
function Jenga ()
wait(1)
JengaBlock.Anchored = false
end
Startbutton.MouseButton1Click:Connect(Jenga)
Note: this is an examble and this script probably won’t work, it’s just an idea.
1 Like