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

My game is giving tools to everyone in the server? lol please help if you are smart

Asked by 5 years ago

So, to start off with..

It is in a Local Script.

I'm creating a shop script, that you can only buy items with points. When someone purchases the tool with points; everyone gets the tool?

I'm very concerned.

Here's the script:

01local Part = game.Workspace.BuyPart
02local RS = game:GetService("ReplicatedStorage")
03local Sword = RS.Tools:FindFirstChild("SpeedCoil")
04local Players = game:GetService("Players")
05local Debounce = false
06 
07Part.Touched:Connect(function(hit)
08    local Player = game.Players.LocalPlayer
09    if Player.leaderstats.Points.Value >= 500 then
10        if not Debounce then
11            Debounce = true
12        Sword.Parent = Player.Backpack
13        wait(10)
14        Debounce = false
15    end
View all 51 lines...
0
Add a variable named coins set it to the amount you want then do coins.Value = coins.Value - Points.Value on line 10 and line 38 and line 24. JesseSong 3916 — 5y

3 answers

Log in to vote
1
Answered by
Infocus 144
5 years ago
01--[[
02I optimized your script because there were placements that shouldn't have been made. Such as 3 other Touched events in a touch event.
03]]
04 
05local Part = game.Workspace.BuyPart
06local RS = game:GetService("ReplicatedStorage")
07local Sword = RS.Tools:FindFirstChild("SpeedCoil")
08local Players = game:GetService("Players")
09local Debounce = false
10local Player = game.Players.LocalPlayer
11 
12Part.Touched:connect(function(hit) -- I close each event after its done its job
13    if Player.leaderstats.Points.Value >= 500 and not Debounce then -- Can have multiple conditional statements in one line using 'and'
14        Debounce = true
15        Sword:Clone().Parent = Player.Backpack -- Clone the part to avoid repetition
View all 44 lines...
0
Obviously there are more efficient ways of doing this, like gathering them all and having them give the tools based on what value they are holding. I didn't want to alter your script beyond your current style or understanding. Im just giving ideas. Cheers Infocus 144 — 5y
0
I'm so happy now, you definitely taught me something. maxpax2009 340 — 5y
0
Glad to help Infocus 144 — 5y
0
Also what you did and what that script does it does it only for the local player. Changing the local player and using GetPlayerFromCharacter allows it so anyone can use that. Unless the script is given to everyone then you're fine Infocus 144 — 5y
Ad
Log in to vote
1
Answered by
JesseSong 3916 Moderation Voter Community Moderator
5 years ago
Edited 5 years ago

That's because you didn't clone it to the backpack. If player has more points then you have to clone it to the backpack otherwise it wont work and will give the tools to everyone and.

Note: If you don't put clone this will just make the thing of the parent which you told the script plus if you want to make a bought script all you have to do is say

1coins = 10 -- you can name it to anything you want
2 
3coins.Value = coins.Value - Points.Value

Please upvote me if I am correct.

Log in to vote
0
Answered by 5 years ago

Make sure they're not in Starterpack otherwise they'll be given to the player by default. Put the tools in ServerStorage and then clone them to the player when you need to.

0
Thats manually but you can do it with a script. JesseSong 3916 — 5y

Answer this question