Can someone help i dont get it so every time i touch this part it warns me fireserver can only be called from the client
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | game.ReplicatedStorage.Events.Sell:FireServer() |
4 | end |
5 | end ) |
Hello Gingerely
Thanks for the question
Basically, because I guess you're using a server script, inside of a part, you can just do everything here, as the serverscript is safe, and the client can not edit this, meaining you will not need to fire the server.
RemoteEvents, allow the server and the Client to interact / communicate.
Since you're already using a serverscript, you can do this
01 | local debounce = false |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if debounce = = false then -- checking for debounce |
05 | debounce = true -- because player has touched. |
06 | if hit.Parent:FindFirstChild( "Humanoid" ) then -- has found a player. |
07 | local player = game:GetService( "Players" ):GetPlayerFromCharacter(hit.Parent) -- gets the player inside of the 'Players' service. |
08 | --Add the players currency here example; |
09 | player.leaderstats [ "Currency2" ] .Value = player.leaderstats [ "Currency1" ] .Value * 2 --EXAMPLE. |
10 | player [ "Currency1" ] .Value = 0 --EXAMPLE. |
11 | wait( 2 ) |
12 | debounce = false |
13 | end |
14 | end |
15 | end ) |
This must be server script then, change it to a Local Script!