VenomousshotzYT

Monster Simulator Script

May 21st, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.79 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Title = Instance.new("TextLabel")
  8. local Base = Instance.new("Frame")
  9. local ShardAmount = Instance.new("TextBox")
  10. local ShardText = Instance.new("TextLabel")
  11. local Fillbp = Instance.new("TextButton")
  12. local Sellbp = Instance.new("TextButton")
  13. local Getshards = Instance.new("TextButton")
  14. local Killnpc = Instance.new("TextButton")
  15. local Mobname = Instance.new("TextBox")
  16. local Stopkillnpc = Instance.new("TextButton")
  17. local Close = Instance.new("TextButton")
  18. local PLayer = game:GetService("Players").LocalPlayer
  19. local Killnpcon = false
  20. local AutoFarm = false
  21.  
  22. --Properties:
  23.  
  24. ScreenGui.Parent = game.CoreGui
  25.  
  26. Title.Name = "Title"
  27. Title.Parent = ScreenGui
  28. Title.Active = true
  29. Title.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  30. Title.BorderColor3 = Color3.fromRGB(255, 255, 255)
  31. Title.Position = UDim2.new(0.314759105, 0, 0.292014271, 0)
  32. Title.Selectable = true
  33. Title.Size = UDim2.new(0, 476, 0, 25)
  34. Title.Font = Enum.Font.SourceSans
  35. Title.Text = "All Made By P3rge :)"
  36. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. Title.TextScaled = true
  38. Title.TextSize = 14.000
  39. Title.TextWrapped = true
  40. Title.Draggable = true
  41.  
  42. Base.Name = "Base"
  43. Base.Parent = Title
  44. Base.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  45. Base.BorderColor3 = Color3.fromRGB(255, 255, 255)
  46. Base.Position = UDim2.new(-0.000467552338, 0, 0.988985598, 0)
  47. Base.Size = UDim2.new(0, 476, 0, 181)
  48.  
  49. ShardAmount.Name = "ShardAmount"
  50. ShardAmount.Parent = Base
  51. ShardAmount.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  52. ShardAmount.BorderColor3 = Color3.fromRGB(255, 255, 255)
  53. ShardAmount.Position = UDim2.new(0.0259952806, 0, 0.18946138, 0)
  54. ShardAmount.Size = UDim2.new(0, 136, 0, 36)
  55. ShardAmount.Font = Enum.Font.SourceSans
  56. ShardAmount.Text = "1"
  57. ShardAmount.TextColor3 = Color3.fromRGB(255, 255, 255)
  58. ShardAmount.TextScaled = true
  59. ShardAmount.TextSize = 14.000
  60. ShardAmount.TextWrapped = true
  61.  
  62. ShardText.Name = "ShardText"
  63. ShardText.Parent = Base
  64. ShardText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. ShardText.BackgroundTransparency = 1.000
  66. ShardText.BorderColor3 = Color3.fromRGB(255, 255, 255)
  67. ShardText.Position = UDim2.new(0.0259953346, 0, 0.0472744256, 0)
  68. ShardText.Size = UDim2.new(0, 135, 0, 26)
  69. ShardText.Font = Enum.Font.SourceSans
  70. ShardText.Text = "Amount Of Shards"
  71. ShardText.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. ShardText.TextScaled = true
  73. ShardText.TextSize = 14.000
  74. ShardText.TextWrapped = true
  75.  
  76. Fillbp.Name = "Fillbp"
  77. Fillbp.Parent = Base
  78. Fillbp.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  79. Fillbp.BorderColor3 = Color3.fromRGB(255, 255, 255)
  80. Fillbp.Position = UDim2.new(0.0259952806, 0, 0.510512888, 0)
  81. Fillbp.Size = UDim2.new(0, 136, 0, 80)
  82. Fillbp.Font = Enum.Font.SourceSans
  83. Fillbp.Text = "Fill BackPack"
  84. Fillbp.TextColor3 = Color3.fromRGB(255, 255, 255)
  85. Fillbp.TextScaled = true
  86. Fillbp.TextSize = 14.000
  87. Fillbp.TextWrapped = true
  88. Fillbp.MouseButton1Down:connect(function()
  89. local args = {
  90. [1] = "UpdateSoulAmount",
  91. [2] = game:GetService("Players").LocalPlayer.ValueStore.SoulCapacity.Value,
  92. }
  93.  
  94. game:GetService("ReplicatedStorage").NetworkEvents.RemoteEvent:FireServer(unpack(args))
  95. end)
  96.  
  97. Sellbp.Name = "Sellbp"
  98. Sellbp.Parent = Base
  99. Sellbp.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  100. Sellbp.BorderColor3 = Color3.fromRGB(255, 255, 255)
  101. Sellbp.Position = UDim2.new(0.350168943, 0, 0.510512888, 0)
  102. Sellbp.Size = UDim2.new(0, 142, 0, 80)
  103. Sellbp.Font = Enum.Font.SourceSans
  104. Sellbp.Text = "Sell BackPack"
  105. Sellbp.TextColor3 = Color3.fromRGB(255, 255, 255)
  106. Sellbp.TextScaled = true
  107. Sellbp.TextSize = 14.000
  108. Sellbp.TextWrapped = true
  109. Sellbp.MouseButton1Down:connect(function()
  110. local args = {
  111. [1] = "SellSouls",
  112. }
  113.  
  114. game:GetService("ReplicatedStorage").NetworkEvents.RemoteEvent:FireServer(unpack(args))
  115. end)
  116.  
  117. Getshards.Name = "Getshards"
  118. Getshards.Parent = Base
  119. Getshards.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  120. Getshards.BorderColor3 = Color3.fromRGB(255, 255, 255)
  121. Getshards.Position = UDim2.new(0.350168943, 0, 0.19092083, 0)
  122. Getshards.Size = UDim2.new(0, 142, 0, 36)
  123. Getshards.Font = Enum.Font.SourceSans
  124. Getshards.Text = "Get Shards"
  125. Getshards.TextColor3 = Color3.fromRGB(255, 255, 255)
  126. Getshards.TextScaled = true
  127. Getshards.TextSize = 14.000
  128. Getshards.TextWrapped = true
  129. Getshards.MouseButton1Down:connect(function()
  130. local args = {
  131. [1] = "RedeemSoul",
  132. [2] = ShardAmount.Text,
  133. }
  134.  
  135. game:GetService("ReplicatedStorage").NetworkEvents.RemoteEvent:FireServer(unpack(args))
  136. end)
  137.  
  138. Killnpc.Name = "Killnpc"
  139. Killnpc.Parent = Base
  140. Killnpc.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  141. Killnpc.BorderColor3 = Color3.fromRGB(255, 255, 255)
  142. Killnpc.Position = UDim2.new(0.680000901, 0, 0.510512888, 0)
  143. Killnpc.Size = UDim2.new(0, 142, 0, 35)
  144. Killnpc.Font = Enum.Font.SourceSans
  145. Killnpc.Text = "Kill Mobs"
  146. Killnpc.TextColor3 = Color3.fromRGB(255, 255, 255)
  147. Killnpc.TextScaled = true
  148. Killnpc.TextSize = 14.000
  149. Killnpc.TextWrapped = true
  150. Killnpc.MouseButton1Down:connect(function()
  151. AutoFarm = true
  152. wait(0.1)
  153. while AutoFarm == true do
  154. wait()
  155. local args = {
  156. [1] = "KillEnemy",
  157. [2] = Mobname.Text,
  158. }
  159.  
  160. game:GetService("ReplicatedStorage").NetworkEvents.RemoteEvent:FireServer(unpack(args))
  161. end
  162. end)
  163.  
  164. Mobname.Name = "Mobname"
  165. Mobname.Parent = Base
  166. Mobname.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  167. Mobname.BorderColor3 = Color3.fromRGB(255, 255, 255)
  168. Mobname.Position = UDim2.new(0.680672288, 0, 0.18784529, 0)
  169. Mobname.Size = UDim2.new(0, 142, 0, 36)
  170. Mobname.Font = Enum.Font.SourceSans
  171. Mobname.Text = "GiantPurpleOrc"
  172. Mobname.TextColor3 = Color3.fromRGB(255, 255, 255)
  173. Mobname.TextScaled = true
  174. Mobname.TextSize = 14.000
  175. Mobname.TextWrapped = true
  176.  
  177. Stopkillnpc.Name = "Killnpc"
  178. Stopkillnpc.Parent = Base
  179. Stopkillnpc.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
  180. Stopkillnpc.BorderColor3 = Color3.fromRGB(255, 255, 255)
  181. Stopkillnpc.Position = UDim2.new(0.680000901, 0, 0.75774771, 0)
  182. Stopkillnpc.Size = UDim2.new(0, 142, 0, 35)
  183. Stopkillnpc.Font = Enum.Font.SourceSans
  184. Stopkillnpc.Text = "Stop Farming"
  185. Stopkillnpc.TextColor3 = Color3.fromRGB(255, 255, 255)
  186. Stopkillnpc.TextScaled = true
  187. Stopkillnpc.TextSize = 14.000
  188. Stopkillnpc.TextWrapped = true
  189. Stopkillnpc.MouseButton1Down:connect(function()
  190. AutoFarm = false
  191. end)
  192.  
  193. Close.Name = "Close"
  194. Close.Parent = Title
  195. Close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  196. Close.BorderColor3 = Color3.fromRGB(255, 255, 255)
  197. Close.Position = UDim2.new(0.944847167, 0, 0, 0)
  198. Close.Size = UDim2.new(0, 26, 0, 24)
  199. Close.Font = Enum.Font.SourceSans
  200. Close.Text = "X"
  201. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  202. Close.TextScaled = true
  203. Close.TextSize = 14.000
  204. Close.TextWrapped = true
  205. Close.MouseButton1Down:connect(function()
  206. Title.Visible = false
  207. end)
Add Comment
Please, Sign In to add comment