|
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 |
|
|
|
|
uglypoeJoin Date: 2011-03-26 Post Count: 4382 |
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
|
|
|
Tried that already.
choo choo |
|
|
FrostOverJoin Date: 2013-06-20 Post Count: 299 |
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 :/
choo choo |
|
|
And nothing SHOULD be getting filtered anyway because it all in the PlayerGui and the server can't see that.
choo choo |
|
FrostOverJoin Date: 2013-06-20 Post Count: 299 |
you need to test a server to see them |
|
DarkenusJoin Date: 2014-07-17 Post Count: 1997 |
> "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 |
|
|
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 |
|
FrostOverJoin Date: 2013-06-20 Post Count: 299 |
Errors? is it printing anything? |
|
|
"Nothing prints to the output either."
choo choo |
|
FrostOverJoin Date: 2013-06-20 Post Count: 299 |
print('Test') before it does anything and Print('test2') after you've stated your variables |
|
|
It printed "test" and "test2"
choo choo |
|
FrostOverJoin Date: 2013-06-20 Post Count: 299 |
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 |
|
|
I don't know what that could be then because it worked fine before and I didn't change anything.
choo choo |
|
|
|
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 |
|
|
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 |
|
|
no i need clicking.value
the npcservice is waiting for that value to be true to advance to the next page.
choo choo |
|
|
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 |
|
|
there are 2 boolvalues inside the button
1 is called Clicking
the other is called Clicked
choo choo |
|