Advertisement
ShadyMoonStudios

Weapon Simulator Gui By ShadyHub/DigitalPianoPlayer#1337

Feb 20th, 2023 (edited)
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.90 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local WeponSimulator = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Credits = Instance.new("TextLabel")
  7. local Farm = Instance.new("TextButton")
  8. local Sell = Instance.new("TextButton")
  9. local Attack = Instance.new("TextButton")
  10. local Hearts = Instance.new("TextButton")
  11. local All = Instance.new("TextButton")
  12. local Destroyed = Instance.new("TextButton")
  13. --Properties:
  14. WeponSimulator.Name = "WeponSimulator"
  15. WeponSimulator.Parent = game.CoreGui
  16. Main.Name = "Main"
  17. Main.Parent = WeponSimulator
  18. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  19. Main.BorderSizePixel = 0
  20. Main.Position = UDim2.new(0, 0, 0.464143485, 0)
  21. Main.Size = UDim2.new(0, 437, 0, 268)
  22. Main.Active = true
  23. Main.Draggable = true
  24.  
  25. Credits.Name = "Credits"
  26. Credits.Parent = Main
  27. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  28. Credits.BorderSizePixel = 0
  29. Credits.Size = UDim2.new(0, 437, 0, 22)
  30. Credits.Font = Enum.Font.SciFi
  31. Credits.Text = "Gui Created By DigitalPianoPlayer#1337"
  32. Credits.TextColor3 = Color3.new(1, 1, 1)
  33. Credits.TextSize = 20
  34.  
  35. Farm.Name = "Farm"
  36. Farm.Parent = Main
  37. Farm.BackgroundColor3 = Color3.new(0, 0, 0)
  38. Farm.BorderSizePixel = 0
  39. Farm.Position = UDim2.new(0, 0, 0.186567158, 0)
  40. Farm.Size = UDim2.new(0, 200, 0, 50)
  41. Farm.Font = Enum.Font.SciFi
  42. Farm.Text = "Auto Farm"
  43. Farm.TextColor3 = Color3.new(1, 1, 1)
  44. Farm.TextSize = 20
  45. Farm.TextWrapped = true
  46.  
  47. Sell.Name = "Sell"
  48. Sell.Parent = Main
  49. Sell.BackgroundColor3 = Color3.new(0, 0, 0)
  50. Sell.BorderSizePixel = 0
  51. Sell.Position = UDim2.new(0.54233408, 0, 0.186567158, 0)
  52. Sell.Size = UDim2.new(0, 200, 0, 50)
  53. Sell.Font = Enum.Font.SciFi
  54. Sell.Text = "Sell All"
  55. Sell.TextColor3 = Color3.new(1, 1, 1)
  56. Sell.TextSize = 20
  57. Sell.TextWrapped = true
  58.  
  59. Attack.Name = "Attack"
  60. Attack.Parent = Main
  61. Attack.BackgroundColor3 = Color3.new(0, 0, 0)
  62. Attack.BorderSizePixel = 0
  63. Attack.Position = UDim2.new(-1.11758709e-08, 0, 0.50373137, 0)
  64. Attack.Size = UDim2.new(0, 200, 0, 50)
  65. Attack.Font = Enum.Font.SciFi
  66. Attack.Text = "Auto Attack"
  67. Attack.TextColor3 = Color3.new(1, 1, 1)
  68. Attack.TextSize = 20
  69. Attack.TextWrapped = true
  70.  
  71. Hearts.Name = "Hearts"
  72. Hearts.Parent = Main
  73. Hearts.BackgroundColor3 = Color3.new(0, 0, 0)
  74. Hearts.BorderSizePixel = 0
  75. Hearts.Position = UDim2.new(0.54233408, 0, 0.50373137, 0)
  76. Hearts.Size = UDim2.new(0, 200, 0, 50)
  77. Hearts.Font = Enum.Font.SciFi
  78. Hearts.Text = "Farm Hearts"
  79. Hearts.TextColor3 = Color3.new(1, 1, 1)
  80. Hearts.TextSize = 20
  81. Hearts.TextWrapped = true
  82.  
  83. All.Name = "All"
  84. All.Parent = Main
  85. All.BackgroundColor3 = Color3.new(0, 0, 0)
  86. All.BorderSizePixel = 0
  87. All.Position = UDim2.new(0, 0, 0.813432813, 0)
  88. All.Size = UDim2.new(0, 200, 0, 50)
  89. All.Font = Enum.Font.SciFi
  90. All.Text = "Unlock All"
  91. All.TextColor3 = Color3.new(1, 1, 1)
  92. All.TextSize = 20
  93. All.TextWrapped = true
  94.  
  95. Destroyed.Name = "Destroyed"
  96. Destroyed.Parent = Main
  97. Destroyed.BackgroundColor3 = Color3.new(0, 0, 0)
  98. Destroyed.BorderSizePixel = 0
  99. Destroyed.Position = UDim2.new(0.54233408, 0, 0.813432813, 0)
  100. Destroyed.Size = UDim2.new(0, 200, 0, 50)
  101. Destroyed.Font = Enum.Font.SciFi
  102. Destroyed.Text = "Click Destroy"
  103. Destroyed.TextColor3 = Color3.new(1, 1, 1)
  104. Destroyed.TextSize = 20
  105. Destroyed.TextWrapped = true
  106. -- Scripts:
  107. Farm.MouseButton1Down:connect(function()
  108. while true do
  109. wait(2)
  110. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  111. for i,v in pairs(game.Workspace.Areas:GetDescendants()) do
  112. if v.Name == "HumanoidRootPart" then
  113. plr.CFrame = v.CFrame
  114. wait()
  115. end
  116. end
  117. end
  118.  
  119. Sell.MouseButton1Down:connect(function()
  120. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  121. for i,v in pairs(game.Workspace:GetDescendants()) do
  122. if v.Name == "Sell" then
  123. plr.CFrame = v.CFrame
  124. wait()
  125. end
  126. end
  127. end)
  128. end)
  129.  
  130. Attack.MouseButton1Down:connect(function()
  131. while true do
  132. wait()
  133. local A_1 = Vector3.new(59.3279877, 0.100000001, 56.6135178)
  134. local Event = game:GetService("Workspace")[game.Players.LocalPlayer.Name].Weapons.Remote
  135. Event:FireServer(A_1)
  136. end
  137. end)
  138.  
  139. Hearts.MouseButton1Down:connect(function()
  140. while wait() do
  141. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  142. for i,v in pairs(game.Workspace:GetDescendants()) do
  143. if v.Name == "Heart" then
  144. plr.CFrame = v.CFrame
  145. wait()
  146. end
  147. end
  148. end
  149. end)
  150.  
  151. All.MouseButton1Down:connect(function()
  152. game.Workspace.Areas["2"].Door:Destroy()
  153. game.Workspace.Areas["3"].Door:Destroy()
  154. game.Workspace.Areas["4"].Door:Destroy()
  155. game.Workspace.Areas["5"].Door:Destroy()
  156. game.Workspace.Areas["6"].Door:Destroy()
  157. game.Workspace.Areas["7"].Door:Destroy()
  158. game.Workspace.Areas["8"].Door:Destroy()
  159. game.Workspace.Areas["9"].Door:Destroy()
  160. end)
  161.  
  162. Destroyed.MouseButton1Down:connect(function()
  163. local player = game.Players.LocalPlayer
  164. local char = script.Parent
  165. local mouse = player:GetMouse()
  166.  
  167. mouse.Button1Down:Connect(function()
  168. mouse.Target:Destroy()
  169. end)
  170. end)
  171.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement