Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- player = game.Players.LocalPlayer
- character = player.Character
- mouse = player:GetMouse()
- playeroutlines = Instance.new("Folder")
- playeroutlines.Parent = character
- local p = character.Head:Clone()
- p.Parent = playeroutlines
- p.Mesh.Scale = Vector3.new(-1.5, -1.5, -1.5)
- p.face:Destroy()
- character.Head.Mesh.Scale = Vector3.new(-1.25, -1.25, -1.25)
- playeroutlinecolor = Color3.fromRGB(0, 0, 0)
- for i,v in pairs(character:GetChildren()) do
- if v.ClassName == ("Accessory") then
- if v:FindFirstChild("Handle") ~= nil then
- if v.Handle:FindFirstChild("Mesh") ~= nil then
- v.Handle.Mesh.Scale = Vector3.new(v.Handle.Mesh.Scale.X * -1, v.Handle.Mesh.Scale.Y * -1, v.Handle.Mesh.Scale.Z * -1)
- end
- end
- end
- end
- function click()
- if mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
- playeroutlines2 = Instance.new("Folder")
- playeroutlines2.Parent = mouse.Target.Parent
- local p = mouse.Target.Parent.Head:Clone()
- p.Parent = playeroutlines2
- p.Mesh.Scale = Vector3.new(-1.5, -1.5, -1.5)
- p.face:Destroy()
- mouse.Target.Parent.Head.Mesh.Scale = Vector3.new(-1.25, -1.25, -1.25)
- for i,v in pairs(mouse.Target.Parent:GetChildren()) do
- if v.ClassName == ("Accessory") then
- if v:FindFirstChild("Handle") ~= nil then
- if v.Handle:FindFirstChild("Mesh") ~= nil then
- v.Handle.Mesh.Scale = Vector3.new(v.Handle.Mesh.Scale.X * -1, v.Handle.Mesh.Scale.Y * -1, v.Handle.Mesh.Scale.Z * -1)
- end
- end
- end
- end
- end
- end
- mouse.Button1Down:Connect(click)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement