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

Shop script works in studio, but doesnt work AT ALL In game?

Asked by
Vid_eo 126
9 years ago

This shop script I made worked PERFECTLY in studio, but not at all in game? Everything was local!

01local Desc = script.Parent.Parent.Parent:WaitForChild("BBGunDesc")
02local OwnedOrNot = script.Parent.Parent.Parent:WaitForChild("BBGunPriceOrOwned")
03local TheImage = script.Parent.Parent.Parent:WaitForChild("BBGunImage")
04local player = game.Players.LocalPlayer
05local currency = player:WaitForChild('leaderstats').Money
06local amount = 150
07local tool = game.ServerStorage:WaitForChild("BBGun")
08local indextext = "BBGun"
09script.Parent.MouseButton1Down:connect(function()
10    if currency.Value >= amount and not player.Backpack:FindFirstChild("BBGun") or player.Character:FindFirstChild("BBGun") then
11        --They don't have it
12        local newtool = tool:Clone()
13        newtool.Parent = player.Backpack
14        OwnedOrNot.Text = "BBGun - Owned"
15    else
View all 32 lines...

Please help! Thanks!

0
Is this a local script? BinaryResolved 215 — 9y
0
Yea Vid_eo 126 — 9y

Answer this question