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

Why does this script only change the leaderstat with FE turned off?

Asked by 7 years ago
Edited 7 years ago

I'm trying to make this script so that it works with Filtering Enabled? are there any problems? It works when filtering is disabled.

01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02local FishEvent = ReplicatedStorage.FISHKINDEVENTS:WaitForChild("YellowFish")
03 
04local function onCreatePartFired(player)
05    wait(4)
06local xpamount = player.PlayerGui.Stats.EVENTS.ActivateFish.XP.Value
07local coinsamount = player.PlayerGui.Stats.EVENTS.ActivateFish.Coins.Value
08do
09 
10if player:findFirstChild("leaderstats") then
11player.leaderstats.Coins.Value = player.leaderstats.Coins.Value + game.ReplicatedStorage.PEOPLE[""..player.Name..""].FISHING.Coins.Value
12player.leaderstats.XP.Value = player.leaderstats.XP.Value + game.ReplicatedStorage.PEOPLE[""..player.Name..""].FISHING.XP.Value
13player.leaderstats.Fish.Value = player.leaderstats.Fish.Value + 1
14 
15end
16end
17end
18 
19 
20FishEvent.OnServerEvent:Connect(onCreatePartFired)

1 answer

Log in to vote
0
Answered by
DanzLua 2879 Moderation Voter Community Moderator
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

1local ReplicatedStorage = game:GetService("ReplicatedStorage")
2local FishEvent = ReplicatedStorage.FISHKINDEVENTS:WaitForChild("YellowFish")

Next let's combine the function and where you call it together

1FishEvent.OnServerEvent:Connect(function(plr)
2 
3end)

Now for that wait(4)

1FishEvent.OnServerEvent:Connect(function(plr)
2    wait(4)
3end)

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

1event:FireServer(xpamount,coinsamount)

now lets update our current script with those variables

1FishEvent.OnServerEvent:Connect(function(plr,xpamount,coinsamount)
2    wait(4)
3end)

now lets add our if statement with the thing you want to do

1FishEvent.OnServerEvent:Connect(function(plr,xpamount,coinsamount)
2    wait(4)
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
7    end
8end)
Ad

Answer this question