ProlExploiter

Dominus Weight Lifting Simulator GUI

Dec 28th, 2017
1,141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Tutorial = Instance.new("ScreenGui")
  4. local Open = Instance.new("Frame")
  5. local OpenGui = Instance.new("TextButton")
  6. local MainGui = Instance.new("Frame")
  7. local Rebirth = Instance.new("TextButton")
  8. local Power = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. Tutorial.Name = "Tutorial"
  16. Tutorial.Parent = game.CoreGui
  17.  
  18. Open.Name = "Open"
  19. Open.Parent = Tutorial
  20. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  21. Open.Position = UDim2.new(0, 0, 0.358190715, 0)
  22. Open.Size = UDim2.new(0, 117, 0, 104)
  23.  
  24. OpenGui.Name = "OpenGui"
  25. OpenGui.Parent = Open
  26. OpenGui.BackgroundColor3 = Color3.new(0, 0, 0)
  27. OpenGui.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
  28. OpenGui.Size = UDim2.new(0, 117, 0, 104)
  29. OpenGui.Font = Enum.Font.SourceSansBold
  30. OpenGui.FontSize = Enum.FontSize.Size32
  31. OpenGui.Text = "Open"
  32. OpenGui.TextColor3 = Color3.new(1, 1, 1)
  33. OpenGui.TextSize = 30
  34.  
  35. MainGui.Name = "MainGui"
  36. MainGui.Parent = Tutorial
  37. MainGui.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  38. MainGui.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  39. MainGui.Draggable = true
  40. MainGui.Position = UDim2.new(0.266514808, 0, 0.301955998, 0)
  41. MainGui.Size = UDim2.new(0, 506, 0, 382)
  42. MainGui.Visible = false
  43.  
  44. Rebirth.Name = "Rebirth"
  45. Rebirth.Parent = MainGui
  46. Rebirth.BackgroundColor3 = Color3.new(0, 0, 0)
  47. Rebirth.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
  48. Rebirth.Position = UDim2.new(0, 0, 0.261780113, 0)
  49. Rebirth.Size = UDim2.new(0, 135, 0, 92)
  50. Rebirth.Font = Enum.Font.SourceSansBold
  51. Rebirth.FontSize = Enum.FontSize.Size32
  52. Rebirth.Text = "Rebirth"
  53. Rebirth.TextColor3 = Color3.new(1, 1, 1)
  54. Rebirth.TextSize = 30
  55.  
  56. Power.Name = "Power"
  57. Power.Parent = MainGui
  58. Power.BackgroundColor3 = Color3.new(0, 0, 0)
  59. Power.BorderColor3 = Color3.new(0.509804, 0.796079, 1)
  60. Power.Position = UDim2.new(0.733201563, 0, 0.261780113, 0)
  61. Power.Size = UDim2.new(0, 135, 0, 92)
  62. Power.Font = Enum.Font.SourceSansBold
  63. Power.FontSize = Enum.FontSize.Size32
  64. Power.Text = "Power"
  65. Power.TextColor3 = Color3.new(1, 1, 1)
  66. Power.TextSize = 30
  67.  
  68. TextLabel.Parent = MainGui
  69. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  70. TextLabel.BorderColor3 = Color3.new(0.333333, 1, 1)
  71. TextLabel.Size = UDim2.new(0, 458, 0, 50)
  72. TextLabel.Font = Enum.Font.SourceSansBold
  73. TextLabel.FontSize = Enum.FontSize.Size28
  74. TextLabel.Text = "Welcome to dominus weight lifting simulator gui"
  75. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  76. TextLabel.TextSize = 25
  77.  
  78. TextLabel_2.Parent = MainGui
  79. TextLabel_2.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  80. TextLabel_2.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  81. TextLabel_2.Position = UDim2.new(0, 0, 0.945026159, 0)
  82. TextLabel_2.Size = UDim2.new(0, 200, 0, 21)
  83. TextLabel_2.Font = Enum.Font.SourceSansBold
  84. TextLabel_2.FontSize = Enum.FontSize.Size24
  85. TextLabel_2.Text = "By Ne_vo#8128"
  86. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  87. TextLabel_2.TextSize = 20
  88. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  89.  
  90. Close.Name = "Close"
  91. Close.Parent = MainGui
  92. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  93. Close.BorderColor3 = Color3.new(0, 0, 0)
  94. Close.Position = UDim2.new(0.918972313, 0, 0, 0)
  95. Close.Size = UDim2.new(0, 41, 0, 50)
  96. Close.Font = Enum.Font.SourceSansBold
  97. Close.FontSize = Enum.FontSize.Size32
  98. Close.Text = "X"
  99. Close.TextColor3 = Color3.new(1, 1, 1)
  100. Close.TextSize = 30
  101.  
  102.  
  103. OpenGui.MouseButton1Click:connect(function()
  104. game.CoreGui.Tutorial.Open.Visible = false
  105. game.CoreGui.Tutorial.MainGui.Visible = true
  106. end)
  107.  
  108. Power.MouseButton1Click:connect(function()
  109. local rtable = {
  110.  
  111. Cmd = "GiveStrength",
  112. Amount = 1000
  113. }
  114.  
  115. for i= 1, 100 do
  116. game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
  117. end
  118. end)
  119.  
  120. Rebirth.MouseButton1Click:connect(function()
  121. local rtable = {
  122.  
  123. Cmd = "Rebirth"
  124. }
  125.  
  126. for i= 1, 100 do
  127. game.Players.LocalPlayer.MainFunction:InvokeServer(rtable)
  128. end
  129. end)
  130.  
  131. Close.MouseButton1Click:connect(function()
  132. game.CoreGui.Tutorial.MainGui.Visible = false
  133. game.CoreGui.Tutorial.Open.Visible = true
  134. end)
Add Comment
Please, Sign In to add comment