Advertisement
hjkook

D

Sep 15th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.44 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. --player
  5. local p = game.Players.LocalPlayer
  6. --gui--
  7. local GMSYSTEM = Instance.new("ScreenGui",p.PlayerGui)
  8. local MOVE = Instance.new("Frame")
  9. local BAR1 = Instance.new("Frame")
  10. local TITLENAME = Instance.new("TextLabel")
  11. local SPEED200UP = Instance.new("TextButton")
  12. local SPEED300UP = Instance.new("TextButton")
  13. local SPEEDNOMALSET = Instance.new("TextButton")
  14. local JUMPOWER100SET = Instance.new("TextButton")
  15. local BOTTOMNAME = Instance.new("TextLabel")
  16. local JUMPOWER200SET = Instance.new("TextButton")
  17. local JUMPOWER50SET = Instance.new("TextButton")
  18. local main = Instance.new("Frame")
  19. local BARm = Instance.new("Frame")
  20. local TITLE = Instance.new("TextLabel")
  21. local gh = Instance.new("TextButton")
  22. --Properties:
  23. GMSYSTEM.Name = "GMSYSTEM"
  24.  
  25. MOVE.Name = "MOVE"
  26. MOVE.Parent = GMSYSTEM
  27. MOVE.Active = true
  28. MOVE.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  29. MOVE.BackgroundTransparency = 0.40000000596046
  30. MOVE.BorderSizePixel = 0
  31. MOVE.Position = UDim2.new(0.0169013739, 0, 0.609116018, 0)
  32. MOVE.Selectable = true
  33. MOVE.Size = UDim2.new(0, 208, 0, 229)
  34. MOVE.Visible = false
  35.  
  36. BAR1.Name = "BAR1"
  37. BAR1.Parent = MOVE
  38. BAR1.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  39. BAR1.BorderSizePixel = 0
  40. BAR1.Size = UDim2.new(0, 208, 0, 18)
  41.  
  42. TITLENAME.Name = "TITLE NAME"
  43. TITLENAME.Parent = MOVE
  44. TITLENAME.BackgroundColor3 = Color3.new(1, 1, 1)
  45. TITLENAME.BackgroundTransparency = 1
  46. TITLENAME.Size = UDim2.new(0, 208, 0, 18)
  47. TITLENAME.Font = Enum.Font.SourceSans
  48. TITLENAME.Text = "MOVEMENT"
  49. TITLENAME.TextColor3 = Color3.new(1, 1, 1)
  50. TITLENAME.TextSize = 14
  51.  
  52. SPEED200UP.Name = "SPEED200UP"
  53. SPEED200UP.Parent = MOVE
  54. SPEED200UP.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  55. SPEED200UP.BorderSizePixel = 0
  56. SPEED200UP.Position = UDim2.new(0.028846154, 0, 0.11020916, 0)
  57. SPEED200UP.Size = UDim2.new(0, 196, 0, 24)
  58. SPEED200UP.Font = Enum.Font.SourceSans
  59. SPEED200UP.Text = "SPEED(200)UP"
  60. SPEED200UP.TextColor3 = Color3.new(1, 1, 1)
  61. SPEED200UP.TextSize = 14
  62. SPEED200UP.MouseButton1Down:connect(function()
  63. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  64. end)
  65.  
  66. SPEED300UP.Name = "SPEED300UP"
  67. SPEED300UP.Parent = MOVE
  68. SPEED300UP.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  69. SPEED300UP.BorderSizePixel = 0
  70. SPEED300UP.Position = UDim2.new(0.028846154, 0, 0.239594802, 0)
  71. SPEED300UP.Size = UDim2.new(0, 196, 0, 24)
  72. SPEED300UP.Font = Enum.Font.SourceSans
  73. SPEED300UP.Text = "SPEED(300)UP"
  74. SPEED300UP.TextColor3 = Color3.new(1, 1, 1)
  75. SPEED300UP.TextSize = 14
  76. SPEED300UP.MouseButton1Down:connect(function()
  77. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
  78. end)
  79.  
  80. SPEEDNOMALSET.Name = "SPEEDNOMALSET"
  81. SPEEDNOMALSET.Parent = MOVE
  82. SPEEDNOMALSET.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  83. SPEEDNOMALSET.BorderSizePixel = 0
  84. SPEEDNOMALSET.Position = UDim2.new(0.028846154, 0, 0.373335332, 0)
  85. SPEEDNOMALSET.Size = UDim2.new(0, 196, 0, 24)
  86. SPEEDNOMALSET.Font = Enum.Font.SourceSans
  87. SPEEDNOMALSET.Text = "nomal speed"
  88. SPEEDNOMALSET.TextColor3 = Color3.new(1, 1, 1)
  89. SPEEDNOMALSET.TextSize = 14
  90. SPEEDNOMALSET.MouseButton1Down:connect(function()
  91. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  92. end)
  93.  
  94.  
  95. JUMPOWER100SET.Name = "JUMPOWER100SET"
  96. JUMPOWER100SET.Parent = MOVE
  97. JUMPOWER100SET.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  98. JUMPOWER100SET.BorderSizePixel = 0
  99. JUMPOWER100SET.Position = UDim2.new(0.028846154, 0, 0.505952597, 0)
  100. JUMPOWER100SET.Size = UDim2.new(0, 196, 0, 24)
  101. JUMPOWER100SET.Font = Enum.Font.SourceSans
  102. JUMPOWER100SET.Text = "JUMPOWER(100)UP"
  103. JUMPOWER100SET.TextColor3 = Color3.new(1, 1, 1)
  104. JUMPOWER100SET.TextSize = 14
  105. JUMPOWER100SET.MouseButton1Down:connect(function()
  106. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  107. end)
  108.  
  109. BOTTOMNAME.Name = "BOTTOM NAME"
  110. BOTTOMNAME.Parent = MOVE
  111. BOTTOMNAME.BackgroundColor3 = Color3.new(1, 1, 1)
  112. BOTTOMNAME.BackgroundTransparency = 1
  113. BOTTOMNAME.Position = UDim2.new(0, 0, 0.60989815, 0)
  114. BOTTOMNAME.Size = UDim2.new(0, 208, 0, 18)
  115. BOTTOMNAME.Font = Enum.Font.SourceSans
  116. BOTTOMNAME.Text = "MOVEMENT HACKS"
  117. BOTTOMNAME.TextColor3 = Color3.new(1, 1, 1)
  118. BOTTOMNAME.TextSize = 14
  119.  
  120. JUMPOWER200SET.Name = "JUMPOWER200SET"
  121. JUMPOWER200SET.Parent = MOVE
  122. JUMPOWER200SET.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  123. JUMPOWER200SET.BorderSizePixel = 0
  124. JUMPOWER200SET.Position = UDim2.new(0.028846154, 0, 0.690035343, 0)
  125. JUMPOWER200SET.Size = UDim2.new(0, 196, 0, 24)
  126. JUMPOWER200SET.Font = Enum.Font.SourceSans
  127. JUMPOWER200SET.Text = "JUMPOWER(200)UP"
  128. JUMPOWER200SET.TextColor3 = Color3.new(1, 1, 1)
  129. JUMPOWER200SET.TextSize = 14
  130. JUMPOWER200SET.MouseButton1Down:connect(function()
  131. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
  132. end)
  133.  
  134. JUMPOWER50SET.Name = "JUMPOWER50SET"
  135. JUMPOWER50SET.Parent = MOVE
  136. JUMPOWER50SET.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  137. JUMPOWER50SET.BorderSizePixel = 0
  138. JUMPOWER50SET.Position = UDim2.new(0.0288461447, 0, 0.818559051, 0)
  139. JUMPOWER50SET.Size = UDim2.new(0, 196, 0, 24)
  140. JUMPOWER50SET.Font = Enum.Font.SourceSans
  141. JUMPOWER50SET.Text = "NOMAL JUMPOWER"
  142. JUMPOWER50SET.TextColor3 = Color3.new(1, 1, 1)
  143. JUMPOWER50SET.TextSize = 14
  144. JUMPOWER50SET.MouseButton1Down:connect(function()
  145. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  146. end)
  147.  
  148. main.Name = "main"
  149. main.Parent = GMSYSTEM
  150. main.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  151. main.BackgroundTransparency = 0.40000000596046
  152. main.BorderSizePixel = 0
  153. main.Position = UDim2.new(0.0169014093, 0, 0.493093908, 0)
  154. main.Size = UDim2.new(0, 208, 0, 62)
  155.  
  156. BARm.Name = "BARm"
  157. BARm.Parent = main
  158. BARm.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  159. BARm.BorderSizePixel = 0
  160. BARm.Size = UDim2.new(0, 208, 0, 18)
  161.  
  162. TITLE.Name = "TITLE"
  163. TITLE.Parent = main
  164. TITLE.BackgroundColor3 = Color3.new(1, 1, 1)
  165. TITLE.BackgroundTransparency = 1
  166. TITLE.Size = UDim2.new(0, 208, 0, 18)
  167. TITLE.Font = Enum.Font.SourceSans
  168. TITLE.Text = "hack list"
  169. TITLE.TextColor3 = Color3.new(1, 1, 1)
  170. TITLE.TextSize = 14
  171.  
  172. gh.Name = "gh"
  173. gh.Parent = main
  174. gh.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  175. gh.BorderSizePixel = 0
  176. gh.Position = UDim2.new(0.0432692319, 0, 0.45161289, 0)
  177. gh.Size = UDim2.new(0, 193, 0, 19)
  178. gh.Font = Enum.Font.SourceSans
  179. gh.Text = "movement"
  180. gh.TextColor3 = Color3.new(1, 1, 1)
  181. gh.TextSize = 14
  182. gh.MouseButton1Down:connect(function()
  183. MOVE.Visible = true
  184. end)
  185. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement