01 | local player = game.Players.LocalPlayer |
02 | local currency = player:WaitForChild( 'leaderstats' ).Coins |
03 | local amount = 200 |
04 | local tool = game.ReplicatedStorage:WaitForChild( 'LinkedSword' ) |
05 | local indextext = script.Parent.Text |
06 | script.Parent.MouseButton 1 Click:connect( function () |
07 | if currency.Value > = amount and not player.Backpack:FindFirstChild( 'LinkedSword' ) or player.Character:FindFirstChild( 'LinkedSword' ) then |
08 | currency.Value = currency.Value - amount |
09 | local newtool = tool:Clone() |
10 | newtool.Parent = player.Backpack |
11 | script.Parent.TextColor 3 = Color 3. fromRGB( 11 , 199 , 4 ) |
12 | script.Parent.Text = 'Purchase succesful!' |
13 | wait( 2 ) |
14 | script.Parent.TextColor 3 = Color 3. fromRGB( 27 , 42 , 53 ) |
15 | script.Parent.Text = indextext |
Is it a LocalScript? It should be a LocalScript.
You have FE enabled. The client cannot change anything in the real server. Either disable FE(Not recommended) or use RemoteEvents to make the server do it(recommended).
Try using WaitForChild()
, it works in solo play but in server play, you need to wait for everything to lad first. For example, let's say you want your GUI's to load, simply do this:
1 | game:WaitForChild( "StarterGui" ) |
2 |
3 | --the rest of your stuff. |
Hope this helped.