MADE BY rfvfgbbbb
FEATURE:
- GIVE HAT FOR NPC
- made for bald npcs replicates to them
- you need a fe refresh script or any fe admin that has refresh resetting sometimes kills npc
-- Variables
local mouse = game.Players.LocalPlayer:GetMouse()
local uis = game:GetService("UserInputService")
-- Connect
mouse.Button1Down:Connect(function()
-- Check for Target & Left Shift
if mouse.Target and uis:IsKeyDown(Enum.KeyCode.LeftControl) then
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if (v:IsA("Accessory")) then
v.Parent = mouse.Target.Parent
end
end
end
end)