If you’re looking to easily find Kira in Roblox’s Death Note game, the “Find Kira Easily” script is a game-changer. This powerful tool allows players to quickly identify Kira, enhancing your gameplay experience by giving you a strategic edge.
| Game: | DEATH NOTE 🎡 |
| Features: | [Find Kira Easily] |
| Developer: | xBEAR Studios |
| Genre: | All Genres |
| Update Date: | 22.08.2024 |
local Map = workspace.Map;
local Players = game:GetService(“Players”);
local function closestPlayerAtPos(Position)
local MaxRange = math.huge;
local Closest = nil;
for _, v in Players:GetPlayers() do
local RootPart = v.Character and v.Character:FindFirstChild(“HumanoidRootPart”);
if not RootPart then
continue;
end;
local Magnitude = (RootPart.Position – Position).Magnitude;
if Magnitude < MaxRange then
Closest = v.Character;
MaxRange = Magnitude;
end;
end;
return Closest;
end;
for _, v in Map:GetChildren() do
if v.Name == "Id" then
local Position = v.Position;
local SurfaceGui = v:FindFirstChild("SurfaceGui");
if not SurfaceGui then
continue;
end;
SurfaceGui:GetPropertyChangedSignal("Enabled"):Connect(function()
local Kira = closestPlayerAtPos(Position);
if Kira then
print("Kira is " .. Kira.Name);
end;
end);
end;
end;
Steps:
1. Click COPY button for auto copy script
2. Paste the script into your script application
3. Run and done
With these simple steps, players can quickly and easily use the script to improve their Roblox game experience.