So, I made this tool that does all this stuff (it doesn’t need to be explained). What you need to know is when you click any player with the tool equipped, a gui pops up, waits 3 secs, then disappears. The thing is, if you reset your character then try it again, it doesn’t work. How can you fix this?
Script:
local Player = game.Players.LocalPlayer
local Mouse = Player:GetMouse()
local tool = script.Parent
local Frame = game.Players.LocalPlayer.PlayerGui:WaitForChild('ScannerGUI'):WaitForChild('Frame') --Object path to the GUI frame containing the age and rank textboxes.
local groupID = 4796549 --ID of your group.
tool.Activated:Connect(function()
for _,Target in pairs(game.Players:GetPlayers()) do
if Mouse.Target:IsDescendantOf(Target.Character) then
Frame.Visible = true
Frame.Parent.Backround.Visible = true
Frame.AccAge.Text = Target.AccountAge
Frame.RoleInGroup.Text = Target:GetRoleInGroup(groupID)
Frame.AccName.Text = Target.Name
local ToolsInBackpack = Target.Backpack:GetChildren()
local listStr = ""
Frame.Tools.Text = ""
for i,v in pairs(ToolsInBackpack) do
if v:IsA("Tool") then
print(v.Name)
Frame.Tools.Text = Frame.Tools.Text..v.Name.."\n"
end
end
wait(3)
Frame.Visible = false
Frame.Parent.Backround.Visible = false
end
end
end)
-- Make sure they can't use the tool while it is not selected.
tool.Unequipped:Connect(function()
Frame.Visible = false
Frame.Parent.Backround.Visible = false
end)
Thanks.