ProlExploiter

Dominus Weight Lifting Simulator GUI script

Jan 10th, 2018
2,526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. -- Objects
  2.  
  3. local DWLSGui = Instance.new("ScreenGui")
  4. local OpenBut = Instance.new("TextButton")
  5. local Main = Instance.new("Frame")
  6. local bar1 = Instance.new("Frame")
  7. local bar1_2 = Instance.new("Frame")
  8. local RebirthBut = Instance.new("TextButton")
  9. local StrengthBut = Instance.new("TextButton")
  10. local title = Instance.new("TextLabel")
  11. local credits = Instance.new("TextLabel")
  12. local CloseBut = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. DWLSGui.Name = "DWLSGui"
  17. DWLSGui.Parent = game.CoreGui
  18.  
  19. OpenBut.Name = "OpenBut"
  20. OpenBut.Parent = DWLSGui
  21. OpenBut.BackgroundColor3 = Color3.new(1, 1, 1)
  22. OpenBut.Position = UDim2.new(0, 0, 0.869205296, 0)
  23. OpenBut.Size = UDim2.new(0, 97, 0, 50)
  24. OpenBut.Font = Enum.Font.SourceSansBold
  25. OpenBut.Text = "Open"
  26. OpenBut.TextColor3 = Color3.new(0, 0, 0)
  27. OpenBut.TextScaled = true
  28. OpenBut.TextSize = 14
  29. OpenBut.TextWrapped = true
  30. OpenBut.MouseButton1Down:connect(function()
  31. OpenBut.Visible = false
  32. CloseBut.Visible = true
  33. Main.Visible = true
  34. end)
  35.  
  36. Main.Name = "Main"
  37. Main.Parent = DWLSGui
  38. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  39. Main.Position = UDim2.new(0.37068966, 0, 0.240894035, 0)
  40. Main.Size = UDim2.new(0, 270, 0, 313)
  41. Main.Visible = false
  42.  
  43. bar1.Name = "bar1"
  44. bar1.Parent = Main
  45. bar1.BackgroundColor3 = Color3.new(0.85098, 0.85098, 0.85098)
  46. bar1.BorderSizePixel = 0
  47. bar1.Size = UDim2.new(0, 270, 0, 43)
  48.  
  49. bar1_2.Name = "bar1"
  50. bar1_2.Parent = Main
  51. bar1_2.BackgroundColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  52. bar1_2.BorderSizePixel = 0
  53. bar1_2.Position = UDim2.new(0, 0, 0.137380198, 0)
  54. bar1_2.Size = UDim2.new(0, 270, 0, 14)
  55.  
  56. RebirthBut.Name = "RebirthBut"
  57. RebirthBut.Parent = Main
  58. RebirthBut.BackgroundColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  59. RebirthBut.Position = UDim2.new(0.129629627, 0, 0.293929726, 0)
  60. RebirthBut.Size = UDim2.new(0, 200, 0, 50)
  61. RebirthBut.Font = Enum.Font.SourceSansBold
  62. RebirthBut.Text = "Rebirth"
  63. RebirthBut.TextScaled = true
  64. RebirthBut.TextSize = 14
  65. RebirthBut.TextWrapped = true
  66. RebirthBut.MouseButton1Down:connect(function()
  67. local rtable = {
  68.  
  69. Cmd = "Rebirth"
  70. }
  71.  
  72. for i= 1, 100 do
  73. game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
  74. end
  75. end)
  76.  
  77. StrengthBut.Name = "StrengthBut"
  78. StrengthBut.Parent = Main
  79. StrengthBut.BackgroundColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  80. StrengthBut.Position = UDim2.new(0.129629627, 0, 0.584664524, 0)
  81. StrengthBut.Size = UDim2.new(0, 200, 0, 50)
  82. StrengthBut.Font = Enum.Font.SourceSansBold
  83. StrengthBut.Text = "Strength"
  84. StrengthBut.TextScaled = true
  85. StrengthBut.TextSize = 14
  86. StrengthBut.TextWrapped = true
  87. StrengthBut.MouseButton1Down:connect(function()
  88. local rtable = {
  89.  
  90. Cmd = "GiveStrength",
  91. Amount = 1000
  92. }
  93.  
  94. for i= 1, 100 do
  95. game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
  96. end
  97. end)
  98.  
  99. title.Name = "title"
  100. title.Parent = Main
  101. title.BackgroundColor3 = Color3.new(0.85098, 0.85098, 0.85098)
  102. title.BorderSizePixel = 0
  103. title.Position = UDim2.new(0.0222222228, 0, 0, 0)
  104. title.Size = UDim2.new(0, 122, 0, 35)
  105. title.Font = Enum.Font.SciFi
  106. title.Text = "Dominus Weight Lifting Simulator GUI"
  107. title.TextScaled = true
  108. title.TextSize = 14
  109. title.TextWrapped = true
  110.  
  111. credits.Name = "credits"
  112. credits.Parent = Main
  113. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  114. credits.BorderSizePixel = 0
  115. credits.Position = UDim2.new(0.0222222228, 0, 0.926517546, 0)
  116. credits.Size = UDim2.new(0, 77, 0, 23)
  117. credits.Font = Enum.Font.SourceSansBold
  118. credits.Text = "Made by Synax"
  119. credits.TextScaled = true
  120. credits.TextSize = 14
  121. credits.TextWrapped = true
  122.  
  123. CloseBut.Name = "CloseBut"
  124. CloseBut.Parent = DWLSGui
  125. CloseBut.BackgroundColor3 = Color3.new(1, 1, 1)
  126. CloseBut.Position = UDim2.new(0, 0, 0.869205296, 0)
  127. CloseBut.Size = UDim2.new(0, 97, 0, 50)
  128. CloseBut.Visible = false
  129. CloseBut.Font = Enum.Font.SourceSansBold
  130. CloseBut.Text = "Close"
  131. CloseBut.TextColor3 = Color3.new(0, 0, 0)
  132. CloseBut.TextScaled = true
  133. CloseBut.TextSize = 14
  134. CloseBut.TextWrapped = true
  135. CloseBut.MouseButton1Down:connect(function()
  136. Main.Visible = false
  137. OpenBut.Visible = true
  138. CloseBut.Visible = false
  139. end)
Add Comment
Please, Sign In to add comment