This clickdetector script doesn't work and the output doesn't print anything?
Hey guys, I'm trying to make my own egg hunt game, and when you click on the eggs, a frame appears (that is my first part of the game), but this script doesn't error in the output (the output doesn't print anything about this) and the frame doesn't appear when I try clicking on the eggs.
Here is my script:
03 | local eggfolder = script.Parent |
07 | local eggofbloxxed = eggfolder.EggofBloxxed |
09 | local oof_frame = game.StarterGui.EggGuis.OofEggGui.Frame |
11 | local oofclickdetector = script.Parent.EggofBloxxed.ClickDetector 1 |
15 | local normalclickdetector = script.Parent.NormalEgg.ClickDetector 2 |
17 | local normal_egg = eggfolder.NormalEgg |
19 | local normalframe = game.StarterGui.EggGuis.NormalEggGui.Frame |
23 | eggfolder.eggofbloxxed.oofclickdetector.MouseClick:Connect( function () |
24 | oof_frame:TweenPosition(UDim 2. new( 0.5 , 0 , 0.353 , 0 ), 2.9 ) |
29 | eggfolder.normal_egg.normalclickdetector.MouseClick:Connect( function () |
30 | normalframe:TweenPosition(UDim 2. new( 0.5 , 0 , 0.353 , 0 ), 2.9 ) |
Anyone know how to solve this issue?
Thanks!