How would I go about protecting a RemoteEvent from exploiters?
I script a game with some friends and made the shop system where you buy figures and other things with Points. It's a GUI where if you click the buy button on a figure then it sends a signal to a remote event which then makes you spawn with the figure when you join. This worked for a while but I realized an exploiter could simply find the location of the remote event and fire it within their local script but didn't think it would happen until earlier today when I caught an exploiter type their code in chat instead of the exploit. I checked their profile and saw they had collected every figure in the game, and when I brought up the number of Points they had they had exactly 0. I only realized this because they typed it in chat so it's very likely this has happened before and I haven't caught it. I thought of doing it with remote functions but I only have a vague idea of what they do as I haven't worked with them before. Anyways, here's the script I have had since September:
01 | script.Parent.MouseButton 1 Click:Connect( function () |
02 | local player = game.Players.LocalPlayer |
03 | local IMakeFigure = player.NAMEFigure |
04 | if IMakeFigure.Value = = false then |
05 | if player.leaderstats.Points.Value > script.Parent.Name - 1 then |
06 | game:GetService( "ReplicatedStorage" ) [ "Figure Events" ] .NAME:FireServer() |
07 | script.Parent.Parent.ImageLabel.ImageColor 3 = Color 3. new( 55 , 255 , 0 ) |
08 | script.Parent.Text = "Bought!" |
09 | script.Disabled = true |
11 | if script.Parent.Parent.ImageLabel.ImageColor 3 = = Color 3. new( 255 , 0 , 0 ) then |
13 | script.Parent.Parent.ImageLabel.ImageColor 3 = Color 3. new( 255 , 0 , 0 ) |
14 | script.Parent.Text = "You don't have enough Points." |
16 | script.Parent.Parent.ImageLabel.ImageColor 3 = Color 3. new( 255 , 255 , 255 ) |
17 | script.Parent.Text = "20,000 Points" |
Very insecure, I know, but since we have a fairly young demographic I didn't expect someone to do this, plus most exploits that have an explorer and excecutor cost money. So how would I go about fixing this? An ideal fix would have the server script waiting for the fire check for a value that the player can't see, but since it's a local script that fires the remote event everything is in view. I'm glad to give any extra information. Thanks.