Advertisement
ProlExploiter

FWLS GUI

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