of     2   
chevron_rightchevron_rightchevron_right

Rocky28447
#183909831Thursday, February 18, 2016 11:37 PM GMT

This script was in a server-sided script inside the Player's StarterGui, but since I've been making my game FE compatible I had to move it into a LocalScript and paste the code into it. I did not change a single line of code in it except adding random prints as a last ditch effort to see what was wrong. It worked when it was in a server script but now that it is inside a LocalScript it does not work. Nothing prints to the output either. This script was for a button to advance the dialogue when talking to an NPC. wait(5) local player = script.Parent.Parent.Parent.Parent.Parent.Parent local gui = script.Parent local link = "rbxgameasset://Images/" local imgIn = "NextHover" local imgOut = "Next" local imgClick = "NextClick" local clicking = script.Parent.Clicking gui.Image = link..imgIn wait(2) gui.Image = link..imgClick wait(2) gui.Image = link..imgOut clicking.Value = false mouseIn = false gui.MouseButton1Click:connect(function() print("clicked") script.Parent.Clicked.Value = true end) gui.MouseEnter:connect(function() print("in") mouseIn = true if (clicking.Value == false) then gui.Image = link..imgIn else gui.Image = link..imgClick end end) gui.MouseLeave:connect(function() print("out") mouseIn = false gui.Image = link..imgOut end) gui.MouseButton1Down:connect(function() print("down") clicking.Value = true gui.Image = link..imgClick end) gui.MouseButton1Up:connect(function() print("up") clicking.Value = false if (mouseIn == true) then gui.Image = link..imgIn else gui.Image = link..imgOut end end) choo choo
Rocky28447
#183910217Thursday, February 18, 2016 11:42 PM GMT

bump choo choo
Rocky28447
#183911637Friday, February 19, 2016 12:04 AM GMT

b2 choo choo
Rocky28447
#183912444Friday, February 19, 2016 12:16 AM GMT

b3 choo choo
uglypoe
#183912660Friday, February 19, 2016 12:20 AM GMT

Change local player = script.Parent.Parent.Parent.Parent.Parent.Parent to local player = game.Players.LocalPlayer and see if that does anything good 4 u
Rocky28447
#183913117Friday, February 19, 2016 12:27 AM GMT

Tried that already. choo choo
Rocky28447
#183921891Friday, February 19, 2016 2:42 AM GMT

b4 choo choo
FrostOver
#183922254Friday, February 19, 2016 2:48 AM GMT

you can find what's being filtered by going to File>Settings>Network>PrintFilters
Rocky28447
#183922288Friday, February 19, 2016 2:48 AM GMT

I have that on already. Nothing is being filtered from it :/ choo choo
Rocky28447
#183922331Friday, February 19, 2016 2:49 AM GMT

And nothing SHOULD be getting filtered anyway because it all in the PlayerGui and the server can't see that. choo choo
FrostOver
#183922344Friday, February 19, 2016 2:49 AM GMT

you need to test a server to see them
Darkenus
#183922377Friday, February 19, 2016 2:50 AM GMT

> "you can find what's being filtered by going to File>Settings>Network>PrintFilters" > "I have that on already. Nothing is being filtered from it :/" are you guys geniuses or what. ive been working on an fe project and certain things are going coo-koo and I NEVER KNEW THAT EXISTED. OMG WHY DONT I KNOW THIS SUTFF . UGH
Rocky28447
#183922404Friday, February 19, 2016 2:50 AM GMT

I KNOW. FOR GOD SAKE I'VE DONE PLAY SOLO, TEST SERVER, EVEN TURNING OFF FE BUT NOTHING WORKS WHY DOES THIS SCRIPT NOT WORK IN A LOCALSCRIPT!? choo choo
FrostOver
#183922551Friday, February 19, 2016 2:52 AM GMT

Errors? is it printing anything?
Rocky28447
#183922588Friday, February 19, 2016 2:52 AM GMT

"Nothing prints to the output either." choo choo
FrostOver
#183922759Friday, February 19, 2016 2:54 AM GMT

print('Test') before it does anything and Print('test2') after you've stated your variables
Rocky28447
#183922911Friday, February 19, 2016 2:56 AM GMT

It printed "test" and "test2" choo choo
FrostOver
#183923641Friday, February 19, 2016 3:06 AM GMT

if there was any errors or anything was being filtered you would be able to see, so maybe there is something wrong with the properties of your GUI
Rocky28447
#183923706Friday, February 19, 2016 3:07 AM GMT

I don't know what that could be then because it worked fine before and I didn't change anything. choo choo
Rocky28447
#183927054Friday, February 19, 2016 4:01 AM GMT

bumpity choo choo
Rocky28447
#183927576Friday, February 19, 2016 4:10 AM GMT

AND SUDDENLY IT WORKS AGAIN! APPARENTLY THINGS DON'T GO RIGHT WHEN YOU HAVE A GUI DESCENDED FROM A GUI SO I CHANGED IT TO A FRAME THE SIZE OF THE SCREEN. THAT COULD HAVE SAVED ME A LOT OF TIME. choo choo
LeitrisArcade
#183927623Friday, February 19, 2016 4:11 AM GMT

Even know you got it working, it looked like you had a lot of stuff that didn't need to be there. If you want it, try this: local player = game.Players.LocalPlayer local gui = script.Parent local link = "rbxassetid://" local imgIn = 0--imgID local imgOut = 0--imgID local imgClick = 0--imgID mouseIn = false gui.MouseButton1Click:connect(function() print("clicked") end) gui.MouseEnter:connect(function() mouseIn = true gui.Image = link..imgIn end) gui.MouseLeave:connect(function() mouseIn = false gui.Image = link..imgOut end) gui.MouseButton1Down:connect(function() gui.Image = link..imgClick end) gui.MouseButton1Up:connect(function() if (mouseIn == true) then gui.Image = link..imgIn else gui.Image = link..imgOut end end) FilteringDisabled is for squares
Rocky28447
#183927708Friday, February 19, 2016 4:13 AM GMT

no i need clicking.value the npcservice is waiting for that value to be true to advance to the next page. choo choo
LeitrisArcade
#183927722Friday, February 19, 2016 4:13 AM GMT

Also, the reason it hadn't worked before is because "Clicked" isn't a valid member of an ImageGui. Not sure if you had something inside it called "Clicked" or not, but that was the only thing I saw that could've made it wack out besides all the waits at the start. FilteringDisabled is for squares
Rocky28447
#183927802Friday, February 19, 2016 4:14 AM GMT

there are 2 boolvalues inside the button 1 is called Clicking the other is called Clicked choo choo

    of     2   
chevron_rightchevron_rightchevron_right