Advertisement
Bruh445

Weapon Masters script

Aug 28th, 2022
1,389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.57 KB | None | 0 0
  1. --Made By Abercke04
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local UIGradient = Instance.new("UIGradient")
  9. local UICorner = Instance.new("UICorner")
  10. local TextLabel = Instance.new("TextLabel")
  11. local AutoSwing = Instance.new("TextButton")
  12. local AntiAfk = Instance.new("TextButton")
  13. local AutoPrestige = Instance.new("TextButton")
  14. local AutoRebirth = Instance.new("TextButton")
  15. local Anchor = Instance.new("TextButton")
  16. local TextButton = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Frame.BorderColor3 = Color3.fromRGB(27, 42, 53)
  25. Frame.BorderSizePixel = 0
  26. Frame.Position = UDim2.new(0.65963304, 0, 0.433734953, 0)
  27. Frame.Size = UDim2.new(0, 351, 0, 200)
  28. Frame.Visible = false
  29. Frame.Active = true
  30. Frame.Draggable = true
  31.  
  32. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(55, 206, 223)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(91, 136, 229))}
  33. UIGradient.Parent = Frame
  34.  
  35. UICorner.CornerRadius = UDim.new(0, 4)
  36. UICorner.Parent = Frame
  37.  
  38. TextLabel.Parent = Frame
  39. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. TextLabel.BackgroundTransparency = 1.000
  41. TextLabel.Size = UDim2.new(0, 351, 0, 27)
  42. TextLabel.Font = Enum.Font.SourceSans
  43. TextLabel.Text = "Weapon Masters"
  44. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. TextLabel.TextSize = 14.000
  46.  
  47. AutoSwing.Name = "Auto Swing"
  48. AutoSwing.Parent = Frame
  49. AutoSwing.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. AutoSwing.BackgroundTransparency = 0.600
  51. AutoSwing.Position = UDim2.new(0, 0, 0.325000018, 0)
  52. AutoSwing.Size = UDim2.new(0, 128, 0, 50)
  53. AutoSwing.Font = Enum.Font.PatrickHand
  54. AutoSwing.Text = "Auto Swing"
  55. AutoSwing.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. AutoSwing.TextScaled = true
  57. AutoSwing.TextSize = 14.000
  58. AutoSwing.TextWrapped = true
  59. AutoSwing.MouseButton1Click:Connect(function()
  60. getgenv().farmer = true
  61.  
  62. while wait() do
  63. if getgenv().farmer == true then
  64. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.SwordService.Swing
  65. Event:FireServer()
  66.  
  67. end
  68. end
  69. end)
  70.  
  71. AntiAfk.Name = "Anti Afk"
  72. AntiAfk.Parent = Frame
  73. AntiAfk.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  74. AntiAfk.BackgroundTransparency = 0.550
  75. AntiAfk.Position = UDim2.new(0.635327637, 0, 0.694999993, 0)
  76. AntiAfk.Size = UDim2.new(0, 128, 0, 50)
  77. AntiAfk.Font = Enum.Font.PatrickHand
  78. AntiAfk.Text = "Anti Afk"
  79. AntiAfk.TextColor3 = Color3.fromRGB(0, 0, 0)
  80. AntiAfk.TextScaled = true
  81. AntiAfk.TextSize = 14.000
  82. AntiAfk.TextWrapped = true
  83. AntiAfk.MouseButton1Click:Connect(function()
  84. local vu = game:GetService("VirtualUser")
  85. game:GetService("Players").LocalPlayer.Idled:connect(function()
  86. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  87. wait(1)
  88. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  89. end)
  90. end)
  91.  
  92. AutoPrestige.Name = "Auto Prestige"
  93. AutoPrestige.Parent = Frame
  94. AutoPrestige.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. AutoPrestige.BackgroundTransparency = 0.700
  96. AutoPrestige.Position = UDim2.new(0, 0, 0.694999993, 0)
  97. AutoPrestige.Size = UDim2.new(0, 128, 0, 50)
  98. AutoPrestige.Font = Enum.Font.PatrickHand
  99. AutoPrestige.Text = "Auto Prestige"
  100. AutoPrestige.TextColor3 = Color3.fromRGB(0, 0, 0)
  101. AutoPrestige.TextScaled = true
  102. AutoPrestige.TextSize = 14.000
  103. AutoPrestige.TextWrapped = true
  104. AutoPrestige.MouseButton1Click:Connect(function()
  105. while true do
  106. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PrestigeService.Prestige
  107. Event:InvokeServer()
  108. end
  109. end)
  110.  
  111. AutoRebirth.Name = "Auto Rebirth"
  112. AutoRebirth.Parent = Frame
  113. AutoRebirth.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114. AutoRebirth.BackgroundTransparency = 0.550
  115. AutoRebirth.Position = UDim2.new(0.635327637, 0, 0.325000018, 0)
  116. AutoRebirth.Size = UDim2.new(0, 128, 0, 50)
  117. AutoRebirth.Font = Enum.Font.PatrickHand
  118. AutoRebirth.Text = "Auto Rebirth"
  119. AutoRebirth.TextColor3 = Color3.fromRGB(0, 0, 0)
  120. AutoRebirth.TextScaled = true
  121. AutoRebirth.TextSize = 14.000
  122. AutoRebirth.TextWrapped = true
  123. AutoRebirth.MouseButton1Click:Connect(function()
  124. while true do
  125. local A_1 = 1
  126. local A_2 = false
  127. local Event = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.RebirthService.Rebirth
  128. Event:InvokeServer(A_1, A_2)
  129.  
  130. end
  131. end)
  132.  
  133. Anchor.Name = "Anchor"
  134. Anchor.Parent = Frame
  135. Anchor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  136. Anchor.BackgroundTransparency = 0.500
  137. Anchor.Position = UDim2.new(0.304843307, 0, 0.13500002, 0)
  138. Anchor.Size = UDim2.new(0, 136, 0, 30)
  139. Anchor.Font = Enum.Font.SourceSans
  140. Anchor.Text = "Anchor"
  141. Anchor.TextColor3 = Color3.fromRGB(0, 0, 0)
  142. Anchor.TextSize = 14.000
  143. Anchor.MouseButton1Click:Connect(function()
  144. local LockEn = false
  145.  
  146. script.Parent.MouseButton1Click:Connect(function()
  147. if LockEn == false then
  148. LockEn = true
  149. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  150. if v:IsA("Part") then
  151. v.Anchored = true
  152. end
  153. end
  154. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  155. if v:IsA("MeshPart") then
  156. v.Anchored = true
  157. end
  158. end
  159. elseif LockEn == true then
  160. LockEn = false
  161. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  162. if v:IsA("Part") then
  163. v.Anchored = false
  164. end
  165. end
  166. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  167. if v:IsA("MeshPart") then
  168. v.Anchored = false
  169. end
  170. end
  171. end
  172. end)
  173.  
  174. end)
  175.  
  176. TextButton.Parent = ScreenGui
  177. TextButton.BackgroundColor3 = Color3.fromRGB(76, 139, 255)
  178. TextButton.Position = UDim2.new(0.0055045872, 0, 0.712851405, 0)
  179. TextButton.Size = UDim2.new(0, 73, 0, 50)
  180. TextButton.Font = Enum.Font.SourceSans
  181. TextButton.Text = "Open"
  182. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  183. TextButton.TextScaled = true
  184. TextButton.TextSize = 14.000
  185. TextButton.TextWrapped = true
  186.  
  187. -- Scripts:
  188.  
  189. local function YPWBBT_fake_script() -- TextButton.LocalScript
  190. local script = Instance.new('LocalScript', TextButton)
  191.  
  192. local frame = script.Parent.Parent.Frame -- change “Test” to the name of the frane
  193. local open = false
  194.  
  195. script.Parent.MouseButton1Click:Connect(function()
  196. if frame.Visible == false then
  197. frame.Visible = true
  198. else
  199. frame.Visible = false
  200. end
  201. end)
  202. end
  203. coroutine.wrap(YPWBBT_fake_script)()
  204.  
  205. game:GetService("StarterGui"):SetCore("SendNotification",{
  206. Title = "Made by: Abercke04",
  207. Text = "Sub to Antwan_Gaming| Enjoy!",
  208. })
  209.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement