p_z

st&c

p_z
Mar 17th, 2019
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.02 KB | None | 0 0
  1. -- [[ ===F.O.E=== Stat Tracker&Changer ]] --
  2. local p = game.Players.LocalPlayer
  3. print("===F.O.E=== Welcome, "..p.Name.." to the Stat Tracker&Changer ===F.O.E===")
  4. yourgay = true
  5. if yourgay == true then
  6. -- G U I
  7. local gui = Instance.new("ScreenGui",p.PlayerGui)
  8. gui.Name = "[[ ===F.O.E === ]]"
  9.  
  10. -- F R A M E
  11. local frame = Instance.new("Frame",gui)
  12. frame.Name = "ST&C"
  13. frame.Position = UDim2.new(0.011,0,0.452,0)
  14. frame.Size = UDim2.new(0,119,0,179)
  15. frame.BackgroundColor3 = Color3.new(33,33,33)
  16. frame.Visible = true
  17. frame.Active = true
  18. frame.Draggable = true
  19. print("Frame-100%")
  20.  
  21. -- T I T L E
  22. local title = Instance.new("TextLabel",frame)
  23. title.Name = "welcome young fellow"
  24. title.Position = UDim2.new(-0.118,0,-0.14,0)
  25. title.Size = UDim2.new(0,131,0,24)
  26. title.Visible = true
  27. title.Text = "[[ ===F.O.E=== ]]"
  28. title.TextScaled = true
  29. title.Font = 'Code'
  30. title.TextColor3 = Color3.new(170,0,0)
  31. title.BackgroundColor3 = Color3.new(0,0,0)
  32. print("Title-100%")
  33.  
  34. -- W A L K  -  L A B E L
  35. local ws = Instance.new("TextLabel",frame)
  36. ws.Name = ".Health"
  37. ws.Position = UDim2.new(0,0,-0.002,0)
  38. ws.Size = UDim2.new(0,118,0,46)
  39. ws.Visible = true
  40. ws.TextScaled = true
  41. ws.Font = 'Code'
  42. ws.TextColor3 = Color3.new(170,0,0)
  43. ws.BackgroundColor3 = Color3.new(0,0,0)
  44. print("WL-100%")
  45.  
  46. -- W A L K  -  P L U S
  47. local wp = Instance.new("TextButton",frame)
  48. wp.Name = "walkspeed"
  49. wp.Position = UDim2.new(0.992,0,0,0)
  50. wp.Size = UDim2.new(0,20,0,45)
  51. wp.Visible = true
  52. wp.Text = "+10"
  53. wp.TextScaled = true
  54. wp.Font = 'Code'
  55. wp.TextColor3 = Color3.new(0,0,0)
  56. wp.BackgroundColor3 = Color3.new(170,0,0)
  57. wp.MouseButton1Down:Connect(function()
  58.     p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed + 10
  59. end)
  60. print("WP-100%")
  61.  
  62. -- W A L K  -  M I N U S
  63. local wm = Instance.new("TextButton",frame)
  64. wm.Name = "walkspeed"
  65. wm.Position = UDim2.new(-0.118,0,0,0)
  66. wm.Size = UDim2.new(0,14,0,46)
  67. wm.Visible = true
  68. wm.Text = "-10"
  69. wm.TextScaled = true
  70. wm.Font = 'Code'
  71. wm.TextColor3 = Color3.new(0,0,0)
  72. wm.BackgroundColor3 = Color3.new(170,0,0)
  73. wm.MouseButton1Down:Connect(function()
  74.     p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed - 10
  75. end)
  76. print("WM-100%")
  77.  
  78. -- J U M P  -  L A B E L
  79. local jp = Instance.new("TextLabel",frame)
  80. jp.Name = "jumppower"
  81. jp.Position = UDim2.new(0,0,0.255,0)
  82. jp.Size = UDim2.new(0,118,0,46)
  83. jp.Visible = true
  84. jp.TextScaled = true
  85. jp.Font = 'Code'
  86. jp.TextColor3 = Color3.new(170,0,0)
  87. jp.BackgroundColor3 = Color3.new(0,0,0)
  88. print("JP-100%")
  89.  
  90. -- J U M P  -  P L U S
  91. local ja = Instance.new("TextButton",frame)
  92. ja.Name = "jumppower"
  93. ja.Position = UDim2.new(0.992,0,0.257,0)
  94. ja.Size = UDim2.new(0,20,0,45)
  95. ja.Visible = true
  96. ja.Text = "+10"
  97. ja.TextScaled = true
  98. ja.Font = 'Code'
  99. ja.TextColor3 = Color3.new(0,0,0)
  100. ja.BackgroundColor3 = Color3.new(170,0,0)
  101. ja.MouseButton1Down:Connect(function()
  102.     p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower + 10
  103. end)
  104. print("JA-100%")
  105.  
  106. -- J U M P  -  M I N U S
  107. local jm = Instance.new("TextButton",frame)
  108. jm.Name = "jumppower"
  109. jm.Position = UDim2.new(-0.118,0,0.257,0)
  110. jm.Size = UDim2.new(0,14,0,45)
  111. jm.Visible = true
  112. jm.Text = "-10"
  113. jm.TextScaled = true
  114. jm.Font = 'Code'
  115. jm.TextColor3 = Color3.new(0,0,0)
  116. jm.BackgroundColor3 = Color3.new(170,0,0)
  117. jm.MouseButton1Down:Connect(function()
  118.     p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower - 10
  119. end)
  120. print("JM-100% & Script-50%")
  121.  
  122. -- H E A L T H  -  L A B E L
  123. local ha = Instance.new("TextLabel",frame)
  124. ha.Name = "health"
  125. ha.Position = UDim2.new(0,0,0.512,0)
  126. ha.Size = UDim2.new(0,118,0,46)
  127. ha.Visible = true
  128. ha.TextScaled = true
  129. ha.Font = 'Code'
  130. ha.TextColor3 = Color3.new(170,0,0)
  131. ha.BackgroundColor3 = Color3.new(0,0,0)
  132. print("HA-100%")
  133.  
  134. -- H E A L T H  -  P L U S
  135. local hp = Instance.new("TextButton",frame)
  136. hp.Name = "health"
  137. hp.Position = UDim2.new(0.992,0,0.514,0)
  138. hp.Size = UDim2.new(0,20,0,45)
  139. hp.Visible = true
  140. hp.Text = "+10"
  141. hp.TextScaled = true
  142. hp.Font = 'Code'
  143. hp.TextColor3 = Color3.new(0,0,0)
  144. hp.BackgroundColor3 = Color3.new(170,0,0)
  145. hp.MouseButton1Down:Connect(function()
  146.     p.Character.Humanoid.Health = p.Character.Humanoid.Health + 10
  147. end)
  148. print("HP-100%")
  149.  
  150. -- H E A L T H  -  M I N U S
  151. local hm = Instance.new("TextButton",frame)
  152. hm.Name = "health"
  153. hm.Position = UDim2.new(-0.118,0,0.508,0)
  154. hm.Size = UDim2.new(0,14,0,47)
  155. hm.Visible = true
  156. hm.Text = "-10"
  157. hm.TextScaled = true
  158. hm.Font = 'Code'
  159. hm.TextColor3 = Color3.new(0,0,0)
  160. hm.BackgroundColor3 = Color3.new(170,0,0)
  161. hm.MouseButton1Down:Connect(function()
  162.     p.Character.Humanoid.Health = p.Character.Humanoid.Health - 10
  163. end)
  164. print("HM-100%")
  165.  
  166. -- M A X H E A L T H  -  L A B E L
  167. local mh = Instance.new("TextLabel",frame)
  168. mh.Name = "maxhealth"
  169. mh.Position = UDim2.new(0,0,0.769,0)
  170. mh.Size = UDim2.new(0,118,0,46)
  171. mh.Visible = true
  172. mh.TextScaled = true
  173. mh.Font = 'Code'
  174. mh.TextColor3 = Color3.new(170,0,0)
  175. mh.BackgroundColor3 = Color3.new(0,0,0)
  176. print("MH-100%")
  177.  
  178. -- M A X H E A L T H  -  P L U S
  179. local mp = Instance.new("TextButton",frame)
  180. mp.Name = "maxhealth"
  181. mp.Position = UDim2.new(0.992,0,0.771,0)
  182. mp.Size = UDim2.new(0,20,0,45)
  183. mp.Visible = true
  184. mp.Text = "+10"
  185. mp.TextScaled = true
  186. mp.Font = 'Code'
  187. mp.TextColor3 = Color3.new(0,0,0)
  188. mp.BackgroundColor3 = Color3.new(170,0,0)
  189. mp.MouseButton1Down:Connect(function()
  190.     p.Character.Humanoid.MaxHealth = p.Character.Humanoid.MaxHealth + 10
  191. end)
  192. print("MP-100%")
  193.  
  194. -- M A X H E A L T H  -  M I N U S
  195. local mm = Instance.new("TextButton",frame)
  196. mm.Name = "maxhealth"
  197. mm.Position = UDim2.new(-0.118,0,0.771,0)
  198. mm.Size = UDim2.new(0,14,0,45)
  199. mm.Visible = true
  200. mm.Text = "-10"
  201. mm.TextScaled = true
  202. mm.Font = 'Code'
  203. mm.TextColor3 = Color3.new(0,0,0)
  204. mm.BackgroundColor3 = Color3.new(170,0,0)
  205. mm.MouseButton1Down:Connect(function()
  206.     p.Character.Humanoid.MaxHealth = p.Character.Humanoid.MaxHealth - 10
  207. end)
  208. print("MM-100%")
  209.  
  210. -- O P E N & C L O S E
  211. local open = Instance.new("TextButton",gui)
  212. local close = Instance.new("TextButton",frame)
  213. open.Name = "open;"
  214. open.Position = UDim2.new(0,0,0.77,0)
  215. open.Size = UDim2.new(0,26,0,15)
  216. open.Visible = false
  217. open.Text = "Open"
  218. open.TextScaled = true
  219. open.Font = 'Code'
  220. open.TextColor3 = Color3.new(170,0,0)
  221. open.BackgroundColor3 = Color3.new(0,0,0)
  222. open.MouseButton1Down:Connect(function()
  223.     frame.Visible = true
  224.     open.Visible = false
  225. end)
  226. close.Name = "aww, why?"
  227. close.Position = UDim2.new(0.992,0,-0.14,0)
  228. close.Size = UDim2.new(0,20,0,24)
  229. close.Visible = true
  230. close.Text = "X"
  231. close.TextScaled = true
  232. close.Font = 'Code'
  233. close.TextColor3 = Color3.new(0,0,0)
  234. close.BackgroundColor3 = Color3.new(170,0,0)
  235. close.MouseButton1Down:Connect(function()
  236.     frame.Visible = false
  237.     open.Visible = true
  238. end)
  239. while true do
  240.     title.Text = "[[ ===F.O.E=== ]]"
  241.     wait(0.2)
  242.     title.Text = "Stat T & C"
  243.     ws.Text = "WalkSpeed:"..p.Character.Humanoid.WalkSpeed
  244.     jp.Text = "JumpPower:"..p.Character.Humanoid.JumpPower
  245.     ha.Text = "Health:"..p.Character.Humanoid.Health
  246.     mh.Text = "MaxHealth:"..p.Character.Humanoid.MaxHealth
  247. end
  248. print("[[ === F.O.E === ]]")
  249. print("Script-100%_completed")
  250. end
Advertisement
Add Comment
Please, Sign In to add comment