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

This clickdetector script doesn't work and the output doesn't print anything?

Asked by
LazokkYT 117
5 years ago

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:

01-- egg folder
02 
03local eggfolder = script.Parent
04 
05-- oof egg variables
06 
07local eggofbloxxed = eggfolder.EggofBloxxed
08 
09local oof_frame = game.StarterGui.EggGuis.OofEggGui.Frame
10 
11local oofclickdetector = script.Parent.EggofBloxxed.ClickDetector1
12 
13-- normal egg variables
14 
15local normalclickdetector = script.Parent.NormalEgg.ClickDetector2
View all 31 lines...

Anyone know how to solve this issue?

Thanks!

2 answers

Log in to vote
0
Answered by
SnowieDev 171
5 years ago

Try this, you can put this in a serverscript; if it doesn't work then check your GUI/Frame position, I tested it myself.

https://prnt.sc/s3lf8q

https://prnt.sc/s3lfl3

01-- [ Variables ] --
02local EggStorage = script.Parent
03 
04-- Oof Egg Variables --
05local EOB = EggStorage:WaitForChild("EggofBloxxed")
06local EOBClickdetector = EOB:WaitForChild("ClickDetector1")
07 
08-- Normal Egg Variables --
09local NE = EggStorage:WaitForChild("NormalEgg")
10local NEClickDetector = NE:WaitForChild("ClickDetector2")
11 
12-- [ Events ] --
13 
14-- EggOfBloxxed --
15EOBClickdetector.MouseClick:Connect(function(Player)
View all 32 lines...
0
Thanks! It actually worked! LazokkYT 117 — 5y
0
Your welcome. SnowieDev 171 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Try this

01-- egg folder
02 
03local eggfolder = script.Parent
04 
05-- oof egg variables
06 
07local eggofbloxxed = eggfolder.EggofBloxxed
08 
09local oof_frame = game.StarterGui.EggGuis.OofEggGui.Frame
10 
11local oofclickdetector = script.Parent.EggofBloxxed.ClickDetector1
12 
13-- normal egg variables
14 
15local normalclickdetector = script.Parent.NormalEgg.ClickDetector2
View all 31 lines...
0
ClickDetectors don't use MouseButton1Click, but ImageButtons and TextButtons do. SnowieDev 171 — 5y
0
Yeah, it doesn't work. ;( LazokkYT 117 — 5y
0
Me bad, sorry Shadic1270 136 — 5y

Answer this question