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:
01 | local Part = game.Workspace.BuyPart |
02 | local RS = game:GetService( "ReplicatedStorage" ) |
03 | local Sword = RS.Tools:FindFirstChild( "SpeedCoil" ) |
04 | local Players = game:GetService( "Players" ) |
05 | local Debounce = false |
06 |
07 | Part.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 |
01 | --[[ |
02 | I 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 |
05 | local Part = game.Workspace.BuyPart |
06 | local RS = game:GetService( "ReplicatedStorage" ) |
07 | local Sword = RS.Tools:FindFirstChild( "SpeedCoil" ) |
08 | local Players = game:GetService( "Players" ) |
09 | local Debounce = false |
10 | local Player = game.Players.LocalPlayer |
11 |
12 | Part.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 |
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
1 | coins = 10 -- you can name it to anything you want |
2 |
3 | coins.Value = coins.Value - Points.Value |
Please upvote me if I am correct.