Shop script works in studio, but doesnt work AT ALL In game?
This shop script I made worked PERFECTLY in studio, but not at all in game? Everything was local!
01 | local Desc = script.Parent.Parent.Parent:WaitForChild( "BBGunDesc" ) |
02 | local OwnedOrNot = script.Parent.Parent.Parent:WaitForChild( "BBGunPriceOrOwned" ) |
03 | local TheImage = script.Parent.Parent.Parent:WaitForChild( "BBGunImage" ) |
04 | local player = game.Players.LocalPlayer |
05 | local currency = player:WaitForChild( 'leaderstats' ).Money |
07 | local tool = game.ServerStorage:WaitForChild( "BBGun" ) |
08 | local indextext = "BBGun" |
09 | script.Parent.MouseButton 1 Down:connect( function () |
10 | if currency.Value > = amount and not player.Backpack:FindFirstChild( "BBGun" ) or player.Character:FindFirstChild( "BBGun" ) then |
12 | local newtool = tool:Clone() |
13 | newtool.Parent = player.Backpack |
14 | OwnedOrNot.Text = "BBGun - Owned" |
16 | script.Parent.Text = 'Purchase failed!' |
18 | script.Parent.Text = indextext |
22 | script.Parent.MouseEnter:connect( function () |
24 | OwnedOrNot.Visible = true |
25 | TheImage.Visible = true |
28 | script.Parent.MouseLeave:connect( function () |
30 | OwnedOrNot.Visible = false |
31 | TheImage.Visible = false |
Please help!
Thanks!