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

My shop GUI only works in studio but not in an actual sever, why not?

Asked by 8 years ago
01local player = game.Players.LocalPlayer
02local currency = player:WaitForChild('leaderstats').Coins
03local amount = 200
04local tool = game.ReplicatedStorage:WaitForChild('LinkedSword')
05local indextext = script.Parent.Text
06script.Parent.MouseButton1Click: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.TextColor3 = Color3.fromRGB(11, 199, 4)
12        script.Parent.Text = 'Purchase succesful!'
13        wait(2)
14        script.Parent.TextColor3 = Color3.fromRGB(27, 42, 53)
15        script.Parent.Text = indextext
View all 39 lines...

3 answers

Log in to vote
0
Answered by 8 years ago

Is it a LocalScript? It should be a LocalScript.

0
Yes of course it is a local script... ThatOneKid7590 45 — 8y
0
Well is there any output (F9)? Is there anything else you can tell us at all? SwardGames 325 — 8y
Ad
Log in to vote
0
Answered by 8 years ago

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).

Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

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:

1game:WaitForChild("StarterGui")
2 
3--the rest of your stuff.

Hope this helped.

Answer this question