ac12345alexis

Weight Simulator 3 Script

Jun 13th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.30 KB | None | 0 0
  1. -- made by 9x8x7x2
  2. -- version 1
  3. -- if i get good feedback i will make another.
  4. local WeightTp = Instance.new("ScreenGui")
  5. local GUI = Instance.new("Frame")
  6. local bar1 = Instance.new("Frame")
  7. local bar2 = Instance.new("Frame")
  8. local skytraining = Instance.new("TextButton")
  9. local bigboybeach = Instance.new("TextButton")
  10. local tinybeach = Instance.new("TextButton")
  11. local autotrain = Instance.new("TextButton")
  12. local brawltraining = Instance.new("TextButton")
  13. local brawlbattle = Instance.new("TextButton")
  14. local scriptbutton = Instance.new("TextButton")
  15. local scriptbutton_2 = Instance.new("TextButton")
  16. local scriptbutton_3 = Instance.new("TextButton")
  17. local scriptbutton_4 = Instance.new("TextButton")
  18. local Title = Instance.new("TextLabel")
  19. local Credits = Instance.new("TextLabel")
  20. local Warning = Instance.new("TextLabel")
  21. local TextButton = Instance.new("TextButton")
  22. local Open = Instance.new("Frame")
  23. local TextButton_2 = Instance.new("TextButton")
  24. --Properties:
  25. WeightTp.Name = "WeightTp"
  26. WeightTp.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  27.  
  28. GUI.Name = "GUI"
  29. GUI.Parent = WeightTp
  30. GUI.Active = true
  31. GUI.BackgroundColor3 = Color3.new(0.666667, 1, 0)
  32. GUI.BackgroundTransparency = 0.40000000596046
  33. GUI.BorderColor3 = Color3.new(0.207843, 0.192157, 0.192157)
  34. GUI.Draggable = true
  35. GUI.Position = UDim2.new(0.0985915512, 0, 0.14403972, 0)
  36. GUI.Selectable = true
  37. GUI.Size = UDim2.new(0, 346, 0, 345)
  38.  
  39. bar1.Name = "bar1"
  40. bar1.Parent = GUI
  41. bar1.BackgroundColor3 = Color3.new(0.866667, 1, 0.709804)
  42. bar1.BackgroundTransparency = 0.40000000596046
  43. bar1.Size = UDim2.new(0, 346, 0, 30)
  44.  
  45. bar2.Name = "bar2"
  46. bar2.Parent = GUI
  47. bar2.BackgroundColor3 = Color3.new(0.537255, 1, 0.454902)
  48. bar2.BackgroundTransparency = 0.40000000596046
  49. bar2.Position = UDim2.new(0, 0, 0.0869565234, 0)
  50. bar2.Size = UDim2.new(0, 346, 0, 7)
  51.  
  52. skytraining.Name = "skytraining"
  53. skytraining.Parent = GUI
  54. skytraining.BackgroundColor3 = Color3.new(1, 1, 1)
  55. skytraining.BackgroundTransparency = 0.5
  56. skytraining.Position = UDim2.new(0.0317919068, 0, 0.150724635, 0)
  57. skytraining.Size = UDim2.new(0, 125, 0, 33)
  58. skytraining.Font = Enum.Font.SourceSans
  59. skytraining.Text = "Teleport to Sky Training"
  60. skytraining.TextColor3 = Color3.new(0, 0, 0)
  61. skytraining.TextSize = 14
  62. skytraining.MouseButton1Down:connect(function()
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2182.5127, 769.779114, -250.614319)
  64. end)
  65.  
  66. bigboybeach.Name = "bigboybeach"
  67. bigboybeach.Parent = GUI
  68. bigboybeach.BackgroundColor3 = Color3.new(1, 1, 1)
  69. bigboybeach.BackgroundTransparency = 0.5
  70. bigboybeach.Position = UDim2.new(0.583815038, 0, 0.150724635, 0)
  71. bigboybeach.Size = UDim2.new(0, 125, 0, 33)
  72. bigboybeach.Font = Enum.Font.SourceSans
  73. bigboybeach.Text = "Teleport to Big Boy Beach"
  74. bigboybeach.TextColor3 = Color3.new(0, 0, 0)
  75. bigboybeach.TextSize = 14
  76. bigboybeach.MouseButton1Down:connect(function()
  77. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-17.6436806, 17.761467, -354.889679)
  78. end)
  79.  
  80. tinybeach.Name = "tinybeach"
  81. tinybeach.Parent = GUI
  82. tinybeach.BackgroundColor3 = Color3.new(1, 1, 1)
  83. tinybeach.BackgroundTransparency = 0.5
  84. tinybeach.Position = UDim2.new(0.0317919254, 0, 0.330434799, 0)
  85. tinybeach.Size = UDim2.new(0, 125, 0, 33)
  86. tinybeach.Font = Enum.Font.SourceSans
  87. tinybeach.Text = "Teleport to Tiny Beach"
  88. tinybeach.TextColor3 = Color3.new(0, 0, 0)
  89. tinybeach.TextSize = 14
  90. tinybeach.MouseButton1Down:connect(function()
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-406.441711, 3.11410189, 119.323685)
  92. end)
  93.  
  94. autotrain.Name = "autotrain"
  95. autotrain.Parent = GUI
  96. autotrain.BackgroundColor3 = Color3.new(1, 1, 1)
  97. autotrain.BackgroundTransparency = 0.5
  98. autotrain.Position = UDim2.new(0.583815038, 0, 0.330434799, 0)
  99. autotrain.Size = UDim2.new(0, 125, 0, 33)
  100. autotrain.Font = Enum.Font.SourceSans
  101. autotrain.Text = "Auto Training "
  102. autotrain.TextColor3 = Color3.new(0, 0, 0)
  103. autotrain.TextSize = 14
  104. autotrain.MouseButton1Down:connect(function()
  105. _G.toggle = true
  106. while _G.toggle do
  107. wait(0.001)
  108. local name = game.Players.LocalPlayer.Name
  109. local rep = "rep"
  110. local remote = game:GetService("Players")[name].strengthEvent
  111. remote:FireServer(rep)
  112. end
  113. end)
  114.  
  115. brawltraining.Name = "brawltraining"
  116. brawltraining.Parent = GUI
  117. brawltraining.BackgroundColor3 = Color3.new(1, 1, 1)
  118. brawltraining.BackgroundTransparency = 0.5
  119. brawltraining.Position = UDim2.new(0.0317919254, 0, 0.515942037, 0)
  120. brawltraining.Size = UDim2.new(0, 125, 0, 33)
  121. brawltraining.Font = Enum.Font.SourceSans
  122. brawltraining.Text = "Teleport to Brawl Training"
  123. brawltraining.TextColor3 = Color3.new(0, 0, 0)
  124. brawltraining.TextSize = 13
  125. brawltraining.MouseButton1Down:connect(function()
  126. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5812.32813, 172.829651, 1878.08606)
  127. end)
  128.  
  129. brawlbattle.Name = "brawlbattle"
  130. brawlbattle.Parent = GUI
  131. brawlbattle.BackgroundColor3 = Color3.new(1, 1, 1)
  132. brawlbattle.BackgroundTransparency = 0.5
  133. brawlbattle.Position = UDim2.new(0.583815038, 0, 0.515942037, 0)
  134. brawlbattle.Size = UDim2.new(0, 125, 0, 33)
  135. brawlbattle.Font = Enum.Font.SourceSans
  136. brawlbattle.Text = "Teleport to Brawl Battling"
  137. brawlbattle.TextColor3 = Color3.new(0, 0, 0)
  138. brawlbattle.TextSize = 13
  139. brawlbattle.MouseButton1Down:connect(function()
  140. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5775.31445, 43.8691788, 2338.92041)
  141. end)
  142.  
  143. scriptbutton.Name = "scriptbutton"
  144. scriptbutton.Parent = GUI
  145. scriptbutton.BackgroundColor3 = Color3.new(1, 1, 1)
  146. scriptbutton.BackgroundTransparency = 0.5
  147. scriptbutton.Position = UDim2.new(0.0317919254, 0, 0.695652187, 0)
  148. scriptbutton.Size = UDim2.new(0, 125, 0, 33)
  149. scriptbutton.Font = Enum.Font.SourceSans
  150. scriptbutton.Text = "None"
  151. scriptbutton.TextColor3 = Color3.new(0, 0, 0)
  152. scriptbutton.TextSize = 14
  153.  
  154. scriptbutton_2.Name = "scriptbutton"
  155. scriptbutton_2.Parent = GUI
  156. scriptbutton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  157. scriptbutton_2.BackgroundTransparency = 0.5
  158. scriptbutton_2.Position = UDim2.new(0.583815038, 0, 0.695652187, 0)
  159. scriptbutton_2.Size = UDim2.new(0, 125, 0, 33)
  160. scriptbutton_2.Font = Enum.Font.SourceSans
  161. scriptbutton_2.Text = "None"
  162. scriptbutton_2.TextColor3 = Color3.new(0, 0, 0)
  163. scriptbutton_2.TextSize = 14
  164.  
  165. scriptbutton_3.Name = "scriptbutton"
  166. scriptbutton_3.Parent = GUI
  167. scriptbutton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  168. scriptbutton_3.BackgroundTransparency = 0.5
  169. scriptbutton_3.Position = UDim2.new(0.583815038, 0, 0.863768101, 0)
  170. scriptbutton_3.Size = UDim2.new(0, 125, 0, 33)
  171. scriptbutton_3.Font = Enum.Font.SourceSans
  172. scriptbutton_3.Text = "None"
  173. scriptbutton_3.TextColor3 = Color3.new(0, 0, 0)
  174. scriptbutton_3.TextSize = 14
  175.  
  176. scriptbutton_4.Name = "scriptbutton"
  177. scriptbutton_4.Parent = GUI
  178. scriptbutton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  179. scriptbutton_4.BackgroundTransparency = 0.5
  180. scriptbutton_4.Position = UDim2.new(0.0317919254, 0, 0.863768101, 0)
  181. scriptbutton_4.Size = UDim2.new(0, 125, 0, 33)
  182. scriptbutton_4.Font = Enum.Font.SourceSans
  183. scriptbutton_4.Text = "None"
  184. scriptbutton_4.TextColor3 = Color3.new(0, 0, 0)
  185. scriptbutton_4.TextSize = 14
  186.  
  187. Title.Name = "Title"
  188. Title.Parent = GUI
  189. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  190. Title.BackgroundTransparency = 1
  191. Title.Size = UDim2.new(0, 156, 0, 30)
  192. Title.Font = Enum.Font.SourceSans
  193. Title.Text = "Weight Lifting Simulator 3 GUI"
  194. Title.TextColor3 = Color3.new(0, 0, 0)
  195. Title.TextSize = 14
  196.  
  197. Credits.Name = "Credits"
  198. Credits.Parent = GUI
  199. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  200. Credits.BackgroundTransparency = 1
  201. Credits.Position = UDim2.new(0.540462434, 0, 0, 0)
  202. Credits.Size = UDim2.new(0, 86, 0, 30)
  203. Credits.Font = Enum.Font.SourceSans
  204. Credits.Text = "Made by TheProB#8741"
  205. Credits.TextColor3 = Color3.new(0.666667, 0.333333, 0)
  206. Credits.TextSize = 14
  207.  
  208. Warning.Name = "Warning"
  209. Warning.Parent = GUI
  210. Warning.BackgroundColor3 = Color3.new(1, 1, 1)
  211. Warning.BackgroundTransparency = 1
  212. Warning.Position = UDim2.new(0.000215165317, 0, 0.999721646, 0)
  213. Warning.Size = UDim2.new(0, 346, 0, 35)
  214. Warning.Font = Enum.Font.SourceSans
  215. Warning.Text = "for Auto Training, please select a method of training strength. [Weights, Pushups, etc.]"
  216. Warning.TextColor3 = Color3.new(0, 0, 0)
  217. Warning.TextSize = 14
  218.  
  219. TextButton.Parent = GUI
  220. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  221. TextButton.BackgroundTransparency = 1
  222. TextButton.Position = UDim2.new(0.881502867, 0, 0, 0)
  223. TextButton.Size = UDim2.new(0, 33, 0, 30)
  224. TextButton.Font = Enum.Font.SourceSans
  225. TextButton.Text = "X"
  226. TextButton.TextColor3 = Color3.new(0.666667, 0, 0)
  227. TextButton.TextSize = 22
  228. TextButton.MouseButton1Down:connect(function()
  229. game.Players.LocalPlayer.PlayerGui.WeightTp.GUI.Visible = false
  230. end)
  231.  
  232. Open.Name = "Open"
  233. Open.Parent = WeightTp
  234. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  235. Open.BackgroundTransparency = 1
  236. Open.Position = UDim2.new(0, 0, 0.966887414, 0)
  237. Open.Size = UDim2.new(0, 100, 0, 20)
  238.  
  239. TextButton_2.Parent = Open
  240. TextButton_2.BackgroundColor3 = Color3.new(0.454902, 1, 0.415686)
  241. TextButton_2.BackgroundTransparency = 0.60000002384186
  242. TextButton_2.Size = UDim2.new(0, 98, 0, 20)
  243. TextButton_2.Font = Enum.Font.Fantasy
  244. TextButton_2.Text = "Open WLS3 GUI"
  245. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  246. TextButton_2.TextSize = 14
  247. TextButton_2.MouseButton1Down:connect(function()
  248. game.Players.LocalPlayer.PlayerGui.WeightTp.GUI.Visible = true
  249. end)
Add Comment
Please, Sign In to add comment