|
| 02 May 2015 11:22 PM |
how am I to Script Obfuscated this: function PrintThis(value) print(value) end
print("Goodbye world!") script:Destroy() |
|
|
| Report Abuse |
|
|
|
| 02 May 2015 11:23 PM |
you mean
function Output(StuffToPrint) print(StuffToPrint) end
Output("Hi")
>> prints 'Hi', no quotes?
Because thats how you do it.
Why is that mirror broken? Oh, It's just my face. xD |
|
|
| Report Abuse |
|
|
|
| 02 May 2015 11:32 PM |
| um.. doesn't solve my problem...? |
|
|
| Report Abuse |
|
|
gerov
|
  |
| Joined: 05 Feb 2011 |
| Total Posts: 5504 |
|
|
| 02 May 2015 11:50 PM |
Obfuscation is un necessary in ROBLOX, it is normally used in public software that the company doesn't intend on you looking at their code.
Obfuscation is a method of obscuring your code, to only make it readable to the person/group that made it. |
|
|
| Report Abuse |
|
|
mathchamp
|
  |
| Joined: 22 Oct 2007 |
| Total Posts: 320 |
|
|
| 03 May 2015 12:09 AM |
Destroying the script when it is no longer needed is okay, but you can't do that if a script needs to be available indefinitely (such as if it loops indefinitely or if it needs to listen for events).
Another thing you can do is put the script in ServerScriptService to make it invisible to clients. Note that you can only put server scripts in ServerScriptService. |
|
|
| Report Abuse |
|
|
|
| 03 May 2015 12:12 AM |
http://www.capprime.com/CapprimeLuaObfuscator/CapprimeLuaObfuscator.aspx
|
|
|
| Report Abuse |
|
|