Advertisement
haxurs199

utility

Dec 18th, 2020 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local nullwarehead = Instance.new("TextButton")
  5. local nullwarestar = Instance.new("TextButton")
  6. local nullwareheadless = Instance.new("TextButton")
  7.  
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Name = "Frame"
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  17. Frame.BorderColor3 = Color3.fromRGB(50, 50, 50)
  18. Frame.Position = UDim2.new(0.389901817, 0, 0.589641452, 0)
  19. Frame.Size = UDim2.new(0, 226, 0, 151)
  20. Frame.Active = true
  21. Frame.Draggable = true
  22.  
  23. TextLabel.Parent = Frame
  24. TextLabel.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  25. TextLabel.BorderColor3 = Color3.fromRGB(58, 58, 58)
  26. TextLabel.Size = UDim2.new(0, 226, 0, 33)
  27. TextLabel.Font = Enum.Font.SciFi
  28. TextLabel.Text = "Nullware Utility Gui"
  29. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. TextLabel.TextSize = 16.000
  31.  
  32. nullwarehead.Name = "nullwarehead"
  33. nullwarehead.Parent = Frame
  34. nullwarehead.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  35. nullwarehead.BorderColor3 = Color3.fromRGB(50, 50, 50)
  36. nullwarehead.Position = UDim2.new(0.03539823, 0, 0.271523178, 0)
  37. nullwarehead.Size = UDim2.new(0, 211, 0, 26)
  38. nullwarehead.Font = Enum.Font.Jura
  39. nullwarehead.Text = "Nullware Head Fix"
  40. nullwarehead.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. nullwarehead.TextSize = 17.000
  42. nullwarehead.MouseButton1Down:connect(function()
  43. for _,fix in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  44. if fix:IsA("AlignPosition") then
  45. fix.ApplyAtCenterOfMass = false
  46. end
  47. end
  48. end)
  49.  
  50. nullwarestar.Name = "nullwarestar"
  51. nullwarestar.Parent = Frame
  52. nullwarestar.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  53. nullwarestar.BorderColor3 = Color3.fromRGB(50, 50, 50)
  54. nullwarestar.Position = UDim2.new(0.03539823, 0, 0.496688753, 0)
  55. nullwarestar.Size = UDim2.new(0, 211, 0, 26)
  56. nullwarestar.Font = Enum.Font.Jura
  57. nullwarestar.Text = "Nullware Star Glitcher"
  58. nullwarestar.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. nullwarestar.TextSize = 17.000
  60. nullwarestar.MouseButton1Down:connect(function()
  61. local a = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Accessory"):Clone()
  62. a.Parent = game:GetService("Players").LocalPlayer.Character
  63. a.Name = "Evil Aura"
  64. a.Handle.Transparency = 1
  65. end)
  66.  
  67. nullwareheadless.Name = "nullwareheadless"
  68. nullwareheadless.Parent = Frame
  69. nullwareheadless.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  70. nullwareheadless.BorderColor3 = Color3.fromRGB(50, 50, 50)
  71. nullwareheadless.Position = UDim2.new(0.03539823, 0, 0.708609283, 0)
  72. nullwareheadless.Size = UDim2.new(0, 211, 0, 26)
  73. nullwareheadless.Font = Enum.Font.Jura
  74. nullwareheadless.Text = "Nullware Head Less"
  75. nullwareheadless.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. nullwareheadless.TextSize = 17.000
  77. nullwareheadless.MouseButton1Down:connect(function()
  78. repeat wait() until _G.MSG.Text == ""
  79. wait(0.5)
  80. local head = game:GetService("Players").LocalPlayer.Character.Head
  81. head.Archivable = true
  82. local headc = head:Clone()
  83. headc.Parent = game:GetService("Players").LocalPlayer.Character
  84. head:Destroy()
  85. local w = Instance.new("Weld", headc)
  86. w.Part0 = headc
  87. w.Part1 = game:GetService("Players").LocalPlayer.Character["NullwareReanim"].Head
  88. headc.Transparency = 1
  89. if headc:FindFirstChildOfClass("Decal") then
  90. headc:FindFirstChildOfClass("Decal").Texture = "rbxassetid://000000000"
  91. end
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement