Answered by
6 years ago Edited 6 years ago
With "FilteringEnabled" enabled, things change up a bit. And I'm pretty sure that you cannot change values using localscripts as only the client can see this and would probably cause issues.
Some of it needs re-editing and seeing that it's a tool your trying to use, your localscript should be the one firing a RemoteEvent rather than the other way around. Something to keep in mind is that when you fire a RemoteEvent or RemoteFunction, it will always give you the player who fired the RemoteEvent/RemoteFunction as the first parameter.
For your localscript, you don't need much code to run it since all your doing is activating your tool. Here's the simple localscript you need with some good notes (put it into the tool):
1 | script.Parent.Activated:Connect( function () |
2 | game.ReplicatedStorage.SpeedEvents.Twenty:FireServer() |
Your script is supposed to be the one doing all of the work (such as doing "if" statements and stuff). Also since the first parameter of your function is which player fired the RemoteEvent, you can use it to check for anything within it (it works like "game.Players.Localplayer") but you cannot use "game.Players.LocalPlayer" with a script since it runs on the server and not on the client so it wouldn't know which player your talking about. Here's the modified script:
01 | game.ReplicatedStorage.SpeedEvents.Twenty.OnServerEvent:Connect( function (plr) |
02 | local skill = plr.Experience.Skill |
03 | local speed = plr.Speed |
05 | if skill.Value > = 20000 then |
06 | plr.Experience.Skill.Value = plr.Experience.Skill.Value - 20000 |
07 | speed.Twenty.Value = true |
09 | script.Parent.Parent.Parent.XpWarning.Visible = true |
11 | script.Parent.Parent.Parent.XpWarning.Visible = false |
If you have any questions or issues, please contact me. ;)