Answered by
7 years ago Edited 7 years ago
I see a few things wrong so let's start from scratch
First let's get our variables in
1 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 | local FishEvent = ReplicatedStorage.FISHKINDEVENTS:WaitForChild( "YellowFish" ) |
Next let's combine the function and where you call it together
1 | FishEvent.OnServerEvent:Connect( function (plr) |
Now for that wait(4)
1 | FishEvent.OnServerEvent:Connect( function (plr) |
Now here's the part about the next two variables, you can't get inside the player's playergui from a script when FE is on. so here what i recommend
Inside the localscript you are firing the server from
add those two values that we need to check
1 | event:FireServer(xpamount,coinsamount) |
now lets update our current script with those variables
1 | FishEvent.OnServerEvent:Connect( function (plr,xpamount,coinsamount) |
now lets add our if statement with the thing you want to do
1 | FishEvent.OnServerEvent:Connect( function (plr,xpamount,coinsamount) |
3 | if plr:findFirstChild( "leaderstats" ) then |
4 | plr.leaderstats.Coins.Value = plr.leaderstats.Coins.Value + game.ReplicatedStorage.PEOPLE [ "" ..plr.Name.. "" ] .FISHING.Coins.Value |
5 | plr.leaderstats.XP.Value = plr.leaderstats.XP.Value + game.ReplicatedStorage.PEOPLE [ "" ..plr.Name.. "" ] .FISHING.XP.Value |
6 | plr.leaderstats.Fish.Value = plr.leaderstats.Fish.Value + 1 |