What is wrong with this FE screengui script that is reporting no errors?
Asked by
8 years ago Edited 8 years ago
local script
1 | local Player = game.Players.LocalPlayer |
2 | local remote = game.ReplicatedStorage.MG |
3 | script.Parent.MouseButton 1 Click:connect( function () |
Serverscript
1 | local Player = game.Players.LocalPlayer |
3 | local remote = game.ReplicatedStorage.MG |
5 | remote.OnServerEvent:connect( function () |
7 | Player.PlayerGui.ScreenGui.Frame.TextLabel.Text = Player.PlayerGui.Money.Value |
I'm not sure whats going on, I Think I wrote the fire server part right, and I'm not getting any errors. But the text remains as "Label" instead of changing to 0...
Is it because "money" is a IntValue?
Or is it because The server isn't transferring the information back, thus its working but the client can't see it?
I have no experience in FE. and the Wiki is absolutely useless because I'm too dumb to understand it.
SO if anyone could help me, I'd be sincerely grateful.