|
How do you fire an event in workspace with a script that is also in Workspace? I tried FireServer() and FireClient() I usually use FireServer() is there another way to do it? |
|
eLunateJoin Date: 2014-07-29 Post Count: 13268 |
|
|
|
I'm not using a bindable event I'm using a remote event. |
|
|
What do you mean by "another way to do it"?
Enjoying your stay at the Scripters Forum? Join this! http://www.roblox.com/My/Groups.aspx?gid=2582784 |
|
|
If the event is triggered in workspace, and the script is in workspace, there is no need for remote functions/events. Remote functions/events are for client/server interactions, such as a GUI button (client) opening a door in workspace (server).
Does that help? |
|
|
I fixed the problem, making another script in the playergui, and I know that there is no need to fire an event from the server to reach something in the server, but in this rare occasion to fix this bug I had, I needed to fire the vent from the server, it's kind of hard to explain, but yeah. |
|
|
|
A game without FE = exploiter heaven |
|
PoineJoin Date: 2011-08-14 Post Count: 1116 |
@HumanXerxes
Nope, if you know how to code your anti-exploit its pretty easy.
|
|
|
A game without FE = amateur exploiter heaven* |
|
|
Lol no FE actually makes your game more vulnerable in some ways. |
|
|
Could you explain how that's possible..? |
|
eLunateJoin Date: 2014-07-29 Post Count: 13268 |
Being stupid* makes your game more vulnerable.
Let's consider this:
FE-on
* I picked up this money, it's x amount of gold
-> Give x amount of gold to player.
>> "I picked up this money, it's 999,999,999 of gold"
FE-off
* I picked up this money, it's gold and it has a value in it.
-> Give the amount in the value in the gold, right to that player, because our logic is ridiculous but still on-par with most FE-off devs
>> "I say that this money is worth 999,999,999 gold, and I just picked it up"
|
|
|
You're trying to fire a server event from a server script? Events were not made for this purpose. They were specifically made to communicate between the local client and the server. |
|
|
"Being stupid* makes your game more vulnerable.
Let's consider this:
FE-on
* I picked up this money, it's x amount of gold
-> Give x amount of gold to player.
>> "I picked up this money, it's 999,999,999 of gold"
FE-off
* I picked up this money, it's gold and it has a value in it.
-> Give the amount in the value in the gold, right to that player, because our logic is ridiculous but still on-par with most FE-off devs
>> "I say that this money is worth 999,999,999 gold, and I just picked it up""
Yea so just change the value with the money instead of changing points directly not hard... |
|