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

Is there any way to create something secretly without the player knowing?

Asked by 5 years ago

Is there any way to create something secretly without the player knowing, I want to create a folder without the player noticing it in my plugin.

0
put its parent as nil Plieax 66 — 5y
0
I hate this idea... I don't even trust plugins anymore because I suspect some try to inject code to steal games. JasonTheOwner 391 — 5y
0
how would you know if I was stealing data? ViviTheLuaKing 103 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

I mean, you can just store it in a table.. or set its parent to nil like Plieax said.. It is very simple,

local folder = Instance.new("Folder")
-- no parent
local newInt = Instance.new("IntValue")
newInt.Parent = folder

or

local DataTable = {32,4,32,324,5,3425,23,}
-- nowhere in the game but the script itself.

I prefer table over no parent...

Now of course exploits with a dex can still access this but it is good enough to prevent newbie exploiters..

Ad

Answer this question