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.
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..