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

Part was anchored, made a script and it still anchored? (Easy)

Asked by 5 years ago

Ok if you have seen my recent questions you have perhaps known that I suck at scripting so I went to watch Alvin Blox for scripting tutorial. I was on episode 4 and in episode 3 he explained how to make a dice rollt hingy. So it is anchored in the sky and when you join it supposed to fall. But i wanted to make it different with the tiniest changes possible and I messed up already :/

01``local dices = game.Workspace.Dices
02 
03game.Workspace.FindFirstChild.Dice1.Anchored = false
04 
05wait (3)
06 
07game.Workspace.FindFirstChild.Dice2.Anchored = false
08 
09wait (3)
10 
11dices.BrickColor = BrickColor.new ("Really red")

What have I done wrong? (Don't blame me that I'm noob at scripting.) Please help thanks!

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Fixed script

01local dices = game.Workspace.Dices
02 
03game.Workspace.Dices:FindFirstChild("Dice1").Anchored = false  -- don't use . for FindFirstChild, use : And use ("")
04wait(3) -- no space
05 
06game.Workspace.Dices:FindFirstChild("Dice2").Anchored = false -- . To :
07 
08wait(3) -- no space
09 
10dices.BrickColor = BrickColor.new("Really red") -- no space

Hope that helped! Its okay to made mistake in scripting Pro tip: open output to see your scripting error

0
Thanks! TheKingOfDaMemes 24 — 5y
Ad

Answer this question