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

Is it possible for an exploiter to exploit a module script that contains shop information?

Asked by
0Vyp 14
3 years ago

So I'm making a game and I'm wondering if it's possible for an exploiter to exploit a module script that contains shop information like prices.

This is the current module script, I have a local script that does require the module but just to read it.

01local StoreItems = {
02 
03    Clicks = {
04        [0] = {
05            Name = "Default",
06            Price = 0,
07            Clicks = 1,
08            Image = "http://www.roblox.com/asset/?id=6685581620"
09        },
10        [1] = {
11            Name = "Test1",
12            Price = 10,
13            Clicks = 2,
14            Image = "http://www.roblox.com/asset/?id=6689477815"
15        },
View all 47 lines...

And this is the local script.

001--[ Variables ]--
002 
003local RS = game:GetService("RunService")
004local replicatedStorage = game:GetService("ReplicatedStorage")
005local replicatedData = replicatedStorage:FindFirstChild("replicatedData")
006 
007local modules = replicatedStorage:FindFirstChild("Modules")
008local storeData = require(modules:FindFirstChild("StoreData"))
009 
010local Sample = replicatedStorage:FindFirstChild("Sample")
011local Clicks = script.Parent.Background.Clicks.ClicksIcon
012local Backpacks = script.Parent.Background.Backpacks.BackpacksIcon
013local Ranks = script.Parent.Background.Ranks.RanksIcon
014local layout = script.Parent.Background.Items.UIPageLayout
015local player = game.Players.LocalPlayer
View all 103 lines...
0
They can exploit Items the are replicated to their client so you should RemoteEvents instead. acediamondn123 147 — 3y
0
That are Replicated* acediamondn123 147 — 3y

2 answers

Log in to vote
0
Answered by
NGC4637 602 Moderation Voter
3 years ago

If the script executor the exploiter is using has a script decompiler (for example, Krnl and Synapse), then yes, unless the ModuleScript is hidden in places like ServerStorage or ServerScriptService, then they can't.

0
Do you know any way I can store my shop information without it being exploited. 0Vyp 14 — 3y
Ad
Log in to vote
1
Answered by 3 years ago

Yes, exploiters can exploit the module script by requiring it and using what is in the module. They can also see what is in module scripts and local scripts.

Answer this question