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

How do I get to local player with a server script?

Asked by 6 years ago
Edited 6 years ago

I'm trying to make an anti exploit in server script service, because if I did it in a local script, the player could access it, and find a way to avoid detection. But I cannot figure out a way to access him in ServerScriptService.

01main = require(script.Parent.Executions.Source) -- A module script
02 
03wait(1)
04 
05    local name = ?? -- I cannot figure this out!
06    local plr = game.Players:WaitForChild(name)
07while wait(5) do
08    if game.Workspace:WaitForChild(name).Humanoid.WalkSpeed > 16 then
09        if not game:GetService("MarketplaceService"):UserOwnsGamePassAsync(plr.UserId, 5473029) -- if he does not have the gamepass then
10            if game.Workspace:WaitForChild(name):FindFirstChild("Acceleration Coil") == nil then -- if he does not have a speed coil
11                    main.kick_Exploiter(name) -- calls the module script to kick player
12        end
13        elseif game:GetService("MarketplaceService"):UserOwnsGamePassAsync(plr.UserId, 5473029) then -- if the player does have the gamepass, but is still exploiting
14            if game.Workspace:FindFirstChild(name).Humanoid.WalkSpeed > 25 then
15                main.kick_Exploiter(name) -- calls the module script to kick player
View all 24 lines...

Module script:

1module = {}
2function module.kick_Exploiter(name)
3local plr = game.Players:WaitForChild(name)
4plr:Kick("You have been kicked for exploiting, please let this game be fun for other players!")
5end
6return module
0
You can always loop through the children of the Players service. User#25115 0 — 6y

3 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

you can use the player parameter of PlayerAdded to get the player on the server. note that PlayerAdded doesnt work on the client.

1game.Players.PlayerAdded:Connect(function(player)
2    print(player.Name, player.UserId) -- prints the userid and name of the player that joined the game.
3end)

also use local variables, as your "main" variable is a global one though its at the top of the scope. prioritize events over while loops and instead indexing the character inside workspace of the name, just use the character parameter of CharacterAdded instead.

1game.Players.PlayerAdded:Connect(function(player)
2    player.CharacterAdded:Connect(function(char)
3        local humanoid = char:WaitForChild("Humanoid")
4 
5        humanoid.Health = humanoid.Health - 50
6    end)
7end)
Ad
Log in to vote
0
Answered by
yHasteeD 1819 Moderation Voter
6 years ago
Edited 6 years ago

You can use with PlayerAdded or Touch function

Here is examples:

PlayerAdded

1game.Players.PlayerAdded:Connect(function(player) -- On player join
2    print("The player " .. player.Name .. " joined in game!") -- Print "The player PLAYER_NAME joined in game"
3end)

Touch

1script.Parent.Touched:Connect(function(hit) -- On touch in a part
2    if hit.Parent:FindFirstChild("Humanoid") then -- Find the Humanoid
3        local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- Get player from character
4        if player ~= nil then -- Check if player is not nil
5            print("I found the player " .. player.Name .. " on touch!") -- print "I found the player PLAYER_NAME on touch"
6        end
7    end
8end)

You can see more is wiki pages:

PlayerAdded - Wiki

Touch - Wiki

Hope it helped :D

Errors? tell-me on comments.

0
This helped me a lot, thanks so much! :D Dave_Robertson 42 — 4y
Log in to vote
0
Answered by 2 years ago
Edited 2 years ago

First thing is first, I need to correct your mindsets:

A localplayer is present in localscripts since the localscripts affects the client and not server.

Let's just say the client is the player. The server is a huge box that lets you connect to roblox, the box itself isn't a player.

What helped me understand this is imagining the server as all the players in the game at the moment.

Now with that said, here are ways you can get the player through a server script:

1game.Players.PlayerAdded:Connect(function(p)
2    local localplayer = p
3end)

Typically, events are given parameters, the first parameter can be named whatever you want, and it will be the player IF YOU CHOOSE TO USE THIS.

Similarly, it can be said for this:

1BasePart.Touched:Connect(function(obj)
2    if obj.Parent:FindFirstChild('Humanoid') then
3        local localplayer = game.Players:FindFirstChild(obj.Parent.Name)
4    end
5end)

The only difference is this event's first parameter is the object the BasePart touches as shown with BasePart.Touched

This also applies to Raycasting, GetTouchingParts and its new successor functions.

This is more detailed in case you were still confused from the other answers.

Answer this question