Advertisement
hjkook

CoreSystem

Feb 16th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. --<<SYSTEM ERROR>>--
  2. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  3. local plrs = S.Players
  4. local LocalPlayers = plrs.LocalPlayer
  5. local Char = plrs.Character
  6. local Hum = Char:FindFirstChildOfClass'Humanoid'
  7. local RArm = Char["Right Arm"]
  8. local LArm = Char["Left Arm"]
  9. local RLeg = Char["Right Leg"]
  10. local LLeg = Char["Left Leg"]
  11. local Root = Char:FindFirstChild'HumanoidRootPart'
  12. local Torso = Char.Torso
  13. local Head = Char.Head
  14. local MaxHealthS = 999999
  15. local ID = Instance.new
  16. local CS = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  17. local CT = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  18. local V0 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  19. --<<SYSTEM>>--
  20. NewInstance = function(instance,parent,properties)
  21. local inst = Instance.new(instance,parent)
  22. if(properties)then
  23. for i,v in next, properties do
  24. pcall(function() inst[i] = v end)
  25. end
  26. end
  27. return inst;
  28. end
  29. --<<NAME GUI>>--
  30. local naeeym2 = ID("BillboardGui",Char)
  31. naeeym2.AlwaysOnTop = true
  32. naeeym2.Size = UDim2.new(5,35,2,15)
  33. naeeym2.StudsOffset = V0.N(0,2.5,0)
  34. naeeym2.Adornee = Char.Head
  35. naeeym2.Name = "Name"
  36. naeeym2.PlayerToHideFrom = plrs
  37. --<<TextLabel>>--
  38. local tecks2 = ID("TextLabel",naeeym2)
  39. tecks2.BackgroundTransparency = 1
  40. tecks2.TextScaled = true
  41. tecks2.BorderSizePixel = 0
  42. tecks2.Text = "SYSTEM ERROR!"
  43. tecks2.Font = Enum.Font.Bodoni
  44. tecks2.TextSize = 30
  45. tecks2.TextStrokeTransparency = 0
  46. tecks2.TextColor3 = CT.N(0,0,0)
  47. tecks2.TextStrokeColor3 = CT.N(.7,0,0)
  48. tecks2.Size = UDim2.new(1,0,0.5,0)
  49. tecks2.Parent = naeeym2
  50. --<<Heathes>>--
  51. Hum.MaxHealth = MaxHealthS
  52. Hum.Health = MaxHealthS
  53. --<<FACE CON>>--
  54. local face = Head:FindFirstChild'face'
  55. if(not face)then
  56. NewInstance("Decal",Head,{Name='face',Face=Enum.NormalId.Front,Texture="rbxassetid://938063731"})
  57. else
  58. face.Texture = "rbxassetid://4938063731"
  59. end
  60. --<<Colors>>--
  61. RArm.BrickColor = BrickColor.new'Really black'
  62. LArm.BrickColor = BrickColor.new'Really black'
  63. RLeg.BrickColor = BrickColor.new'Really black'
  64. LLeg.BrickColor = BrickColor.new'Really black'
  65. Torso.BrickColor = BrickColor.new'Really black'
  66. Head.BrickColor = BrickColor.new'Really black'
  67. --<<Humanoid Name>>--
  68. Hum.Name = 'Chara'
  69. --<<Clothes>>--
  70. for _,v in next, Char:children() do
  71. if(v:IsA'Accessory')then
  72. v:destroy()
  73. elseif(v:IsA'Shirt')then
  74. v.ShirtTemplate = "rbxassetid://692254701"
  75. elseif(v:IsA'Pants')then
  76. v.PantsTemplate = "rbxassetid://1189051064"
  77. elseif(v:IsA'CharacterMesh')then
  78. v:destroy()
  79. elseif(v:FindFirstChildOfClass'ShirtGraphic')then
  80. v:FindFirstChildOfClass'ShirtGraphic':destroy()
  81. end
  82. end
  83. --<<ATTACK FUNCTION>>--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement