Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.92 KB | None | 0 0
  1. local player=game.Players.LocalPlayer;
  2. local Player = game.Players.LocalPlayer
  3. Mouse = Player:GetMouse()
  4. local modded=false
  5. --GUI
  6. local GUI=Instance.new('ScreenGui', game.CoreGui);
  7. UpdateFrame=Instance.new('Frame', GUI);
  8. UpdateFrame.Size = UDim2.new(0, 0, 0, 0);
  9. UpdateFrame.Position = UDim2.new(0.38, 0, 0.2, 0);
  10. UpdateFrame.BackgroundTransparency=0.6;
  11. UpdateFrame.BackgroundColor3=Color3.new(0,0,0);
  12. TextUpdate1=Instance.new('TextLabel',UpdateFrame);
  13. TextUpdate1.Text='CH34T MENU V.20';
  14. TextUpdate1.Size = UDim2.new(1, 0, 0, 50);
  15. TextUpdate1.Position = UDim2.new(0, 0, 0, 0);
  16. TextUpdate1.TextScaled=true;
  17. TextUpdate1.TextStrokeColor3=Color3.new(255,0,0);
  18. TextUpdate1.TextColor3=Color3.new(255,255,255);
  19. TextUpdate1.Font='SciFi';
  20. TextUpdate1.TextStrokeTransparency=0.5;
  21. TextUpdate1.BackgroundTransparency=1;
  22.  
  23.  
  24. local Open = Instance.new("Sound")
  25. Open.Parent = GUI
  26. Open.SoundId = "http://www.roblox.com/asset/?ID=169154227"
  27. Open.Pitch = 1.2
  28. Open.Volume = 1
  29.  
  30. TextUpdate2=Instance.new('TextLabel',UpdateFrame);
  31. TextUpdate2.Text='-Bypass Shutdowns (UnStable)';
  32. TextUpdate2.Size = UDim2.new(1, 0, 0, 50);
  33. TextUpdate2.Position = UDim2.new(0, 0, 0.3, 0);
  34. TextUpdate2.TextSize=26
  35. TextUpdate2.TextStrokeColor3=Color3.new(255,0,0);
  36. TextUpdate2.TextColor3=Color3.new(255,255,255);
  37. TextUpdate2.Font='SciFi';
  38. TextUpdate2.TextStrokeTransparency=0.5;
  39. TextUpdate2.BackgroundTransparency=1;
  40.  
  41. TextUpdate1.Visible=false;
  42. TextUpdate2.Visible=false;
  43. TextUpdate3.Visible=false;
  44. TextUpdate4.Visible=false;
  45. wait(0.3)
  46. UpdateFrame:TweenSize(UDim2.new(0,530,0,340),"In","Quad",1,true)
  47. wait(1)
  48. TextUpdate1.Visible=true;
  49. TextUpdate2.Visible=true;
  50. TextUpdate3.Visible=true;
  51. TextUpdate4.Visible=true;
  52. wait(6)
  53. TextUpdate4.Visible=false;
  54. wait(0.5)
  55. TextUpdate3.Visible=false;
  56. wait(0.5)
  57. TextUpdate2.Visible=false;
  58.  
  59. Username=Instance.new('TextBox',UpdateFrame);
  60. Username.Text='Username';
  61. Username.Size = UDim2.new(0, 200, 0, 50);
  62. Username.Position = UDim2.new(0, 160, 0.3, 0);
  63. Username.BackgroundColor3=Color3.new(0,0,0)
  64. Username.TextSize=26
  65. Username.BorderColor3=Color3.new(255,0,0)
  66. Username.BorderSizePixel=2
  67. Username.TextStrokeColor3=Color3.new(255,0,0);
  68. Username.TextColor3=Color3.new(255,255,255);
  69. Username.Font='SciFi';
  70. Username.TextStrokeTransparency=0.5;
  71. Username.BackgroundTransparency=0.7;
  72.  
  73. Password=Instance.new('TextBox',UpdateFrame);
  74. Password.Text='Password';
  75. Password.Size = UDim2.new(0, 200, 0, 50);
  76. Password.Position = UDim2.new(0, 160, 0.5, 0);
  77. Password.BackgroundColor3=Color3.new(0,0,0)
  78. Password.TextSize=26
  79. Password.BorderColor3=Color3.new(255,0,0)
  80. Password.BorderSizePixel=2
  81. Password.TextStrokeColor3=Color3.new(255,0,0);
  82. Password.TextColor3=Color3.new(255,255,255);
  83. Password.Font='SciFi';
  84. Password.TextStrokeTransparency=0.5;
  85. Password.BackgroundTransparency=0.7
  86.  
  87. Submit=Instance.new('TextButton',UpdateFrame);
  88. Submit.Text='Login';
  89. Submit.Size = UDim2.new(0, 200, 0, 50);
  90. Submit.Position = UDim2.new(0, 160, 0.8, 0);
  91. Submit.BackgroundColor3=Color3.new(0,0,0)
  92. Submit.TextSize=26
  93. Submit.BorderColor3=Color3.new(255,0,0)
  94. Submit.BorderSizePixel=2
  95. Submit.TextStrokeColor3=Color3.new(255,0,0);
  96. Submit.TextColor3=Color3.new(255,255,255);
  97. Submit.Font='SciFi';
  98. Submit.TextStrokeTransparency=0.5;
  99. Submit.BackgroundTransparency=0.7
  100.  
  101. --Mod Menu
  102. local modframe = Instance.new("Frame")
  103. modframe.Parent = GUI
  104. modframe.Position = UDim2.new(0.72, 0, 0, 0)
  105. modframe.Size = UDim2.new(0, 270, 1, 0)
  106. modframe.BackgroundColor3 = Color3.new(0,0,0)
  107. modframe.BorderColor3 = Color3.new(255,0,0)
  108. modframe.BackgroundTransparency = 0.6
  109. modframe.Visible = false
  110.  
  111. Title=Instance.new('TextLabel',modframe);
  112. Title.Text='Mod Menu';
  113. Title.Size = UDim2.new(1, 0, 0, 130);
  114. Title.Position = UDim2.new(0, 0, 0, 0);
  115. Title.TextScaled=true;
  116. Title.TextStrokeColor3=Color3.new(255,0,0);
  117. Title.TextColor3=Color3.new(255,255,255);
  118. Title.Font='SciFi';
  119. Title.TextStrokeTransparency=0.5;
  120. Title.BackgroundTransparency=1;
  121.  
  122. Welcome=Instance.new('TextLabel',modframe);
  123. Welcome.Text='Welcome to Mod Menu';
  124. Welcome.Size = UDim2.new(1, 0, 0, 50);
  125. Welcome.Position = UDim2.new(0, 0, 0.2, 0);
  126. Welcome.TextScaled=false;
  127. Welcome.TextSize=26
  128. Welcome.TextStrokeColor3=Color3.new(255,0,0);
  129. Welcome.TextColor3=Color3.new(255,255,255);
  130. Welcome.Font='SciFi';
  131. Welcome.TextStrokeTransparency=0.5;
  132. Welcome.BackgroundTransparency=1;
  133.  
  134. speedhack=Instance.new('ImageButton', modframe)
  135. speedhack.Size = UDim2.new(1, 0, 0, 60)
  136. speedhack.Position = UDim2.new(0, 0, 0.3, 0)
  137. speedhack.BackgroundTransparency=1
  138. speedhack.Image='rbxassetid://56985860'
  139. speedhack.ImageColor3=Color3.new(0,0,0)
  140. speedhack.ImageTransparency=0.5
  141. speedhack.Visible=true
  142. speedhack.Modal=true
  143.  
  144. speedhacktext=Instance.new('TextLabel',speedhack);
  145. speedhacktext.Text='Speed Hack : OFF';
  146. speedhacktext.Size = UDim2.new(1, 0, 1, 0);
  147. speedhacktext.Position = UDim2.new(0, 0, 0, 0);
  148. speedhacktext.TextScaled=false;
  149. speedhacktext.TextSize=30
  150. speedhacktext.TextStrokeColor3=Color3.new(255,0,0);
  151. speedhacktext.TextColor3=Color3.new(255,255,255);
  152. speedhacktext.Font='SciFi';
  153. speedhacktext.TextStrokeTransparency=0.5;
  154. speedhacktext.BackgroundTransparency=1;
  155.  
  156. infinitemoney=Instance.new('ImageButton', modframe)
  157. infinitemoney.Size = UDim2.new(1, 0, 0, 60)
  158. infinitemoney.Position = UDim2.new(0, 0, 0.4, 0)
  159. infinitemoney.BackgroundTransparency=1
  160. infinitemoney.Image='rbxassetid://56985860'
  161. infinitemoney.ImageColor3=Color3.new(0,0,0)
  162. infinitemoney.ImageTransparency=0.5
  163. infinitemoney.Visible=true
  164.  
  165. infinitemoneytext=Instance.new('TextLabel',infinitemoney);
  166. infinitemoneytext.Text='Infinite Money : OFF';
  167. infinitemoneytext.Size = UDim2.new(1, 0, 1, 0);
  168. infinitemoneytext.Position = UDim2.new(0, 0, 0, 0);
  169. infinitemoneytext.TextScaled=false;
  170. infinitemoneytext.TextSize=30
  171. infinitemoneytext.TextStrokeColor3=Color3.new(255,0,0);
  172. infinitemoneytext.TextColor3=Color3.new(255,255,255);
  173. infinitemoneytext.Font='SciFi';
  174. infinitemoneytext.TextStrokeTransparency=0.5;
  175. infinitemoneytext.BackgroundTransparency=1;
  176.  
  177. godmode=Instance.new('ImageButton', modframe)
  178. godmode.Size = UDim2.new(1, 0, 0, 60)
  179. godmode.Position = UDim2.new(0, 0, 0.5, 0)
  180. godmode.BackgroundTransparency=1
  181. godmode.Image='rbxassetid://56985860'
  182. godmode.ImageColor3=Color3.new(0,0,0)
  183. godmode.ImageTransparency=0.5
  184. godmode.Visible=true
  185.  
  186. godmodetext=Instance.new('TextLabel',godmode);
  187. godmodetext.Text='LoopHealth : OFF';
  188. godmodetext.Size = UDim2.new(1, 0, 1, 0);
  189. godmodetext.Position = UDim2.new(0, 0, 0, 0);
  190. godmodetext.TextScaled=false;
  191. godmodetext.TextSize=30
  192. godmodetext.TextStrokeColor3=Color3.new(255,0,0);
  193. godmodetext.TextColor3=Color3.new(255,255,255);
  194. godmodetext.Font='SciFi';
  195. godmodetext.TextStrokeTransparency=0.5;
  196. godmodetext.BackgroundTransparency=1;
  197.  
  198. raygun=Instance.new('ImageButton', modframe)
  199. raygun.Size = UDim2.new(1, 0, 0, 60)
  200. raygun.Position = UDim2.new(0, 0, 0.6, 0)
  201. raygun.BackgroundTransparency=1
  202. raygun.Image='rbxassetid://56985860'
  203. raygun.ImageColor3=Color3.new(0,0,0)
  204. raygun.ImageTransparency=0.5
  205. raygun.Visible=true
  206.  
  207. rayguntext=Instance.new('TextLabel',raygun);
  208. rayguntext.Text='RayGun';
  209. rayguntext.Size = UDim2.new(1, 0, 1, 0);
  210. rayguntext.Position = UDim2.new(0, 0, 0, 0);
  211. rayguntext.TextScaled=false;
  212. rayguntext.TextSize=30
  213. rayguntext.TextStrokeColor3=Color3.new(255,0,0);
  214. rayguntext.TextColor3=Color3.new(255,255,255);
  215. rayguntext.Font='SciFi';
  216. rayguntext.TextStrokeTransparency=0.5;
  217. rayguntext.BackgroundTransparency=1;
  218.  
  219. function onButtonClicked()
  220. game.Lighting.Guns['Ray_Gun']:Clone().Parent = game.Players.LocalPlayer.Backpack
  221. end
  222. raygun.MouseButton1Down:connect(onButtonClicked)
  223.  
  224. godded=false
  225. function onButtonClicked()
  226. if godded == false then
  227. godded=true
  228. godmodetext.Text='LoopHealth : ON'
  229. while wait() do
  230. if godded==true then
  231. game.Players.LocalPlayer.Character.Humanoid.Health=100
  232. else
  233. print('not godded')
  234. end
  235. end
  236. elseif godded == true then
  237. godded=false
  238. godmodetext.Text='LoopHealth : OFF'
  239. end
  240. end
  241. godmode.MouseButton1Down:connect(onButtonClicked)
  242. speedhacking=false
  243. function onButtonClicked()
  244. if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed==16 then
  245. speedhacking=true
  246. speedhacktext.Text='Speed Hack : ON'
  247. while wait() do
  248. if speedhacking==true then
  249. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=42
  250. else
  251. print('not speed hacking')
  252. end end
  253. elseif game.Players.LocalPlayer.Character.Humanoid.WalkSpeed==42 then
  254. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=16
  255. speedhacktext.Text='Speed Hack : OFF'
  256. speedhacking=false
  257. end
  258. end
  259. speedhack.MouseButton1Down:connect(onButtonClicked)
  260.  
  261. function onButtonClicked()
  262. if game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled==false then
  263. game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled=true
  264. game.Players.LocalPlayer.leaderstats.Money.Value=10000000
  265. infinitemoneytext.Text='Infinite Money : ON'
  266. elseif game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled==true then
  267. game.Players.LocalPlayer.PlayerGui.AntiCheatScript.Disabled=false
  268. infinitemoneytext.Text='Infinite Money : OFF'
  269. end
  270. end
  271. infinitemoney.MouseButton1Down:connect(onButtonClicked)
  272. --Whitelist
  273. function onButtonClicked()
  274. if Username.Text=='1' and Password.Text=='1' then
  275.  
  276. UpdateFrame.Visible=false
  277. modframe.Visible=true
  278. Welcome.Text='Welcome!'
  279. modded=true
  280. end end
  281.  
  282. Submit.MouseButton1Down:connect(onButtonClicked)
  283.  
  284. Mouse.KeyDown:connect(function(Key)
  285. if(Key:lower() == "q") then
  286. if modded == true then
  287. if modframe.Visible == false then
  288. modframe.Visible = true
  289. Open:Play()
  290. modframe.BackgroundTransparency = 0.9
  291. wait(0.001)
  292. modframe.BackgroundTransparency = 0.8
  293. wait(0.001)
  294. modframe.BackgroundTransparency = 0.7
  295. wait(0.001)
  296. modframe.BackgroundTransparency = 0.6
  297. wait(0.001)
  298. elseif modframe.Visible == true then
  299. modframe.BackgroundTransparency = 0.6
  300. wait(0.001)
  301. modframe.BackgroundTransparency = 0.7
  302. wait(0.001)
  303. modframe.BackgroundTransparency = 0.8
  304. wait(0.001)
  305. modframe.BackgroundTransparency = 0.9
  306. wait(0.001)
  307. modframe.BackgroundTransparency = 1
  308. wait(0.001)
  309. modframe.Visible = false
  310. end end
  311. end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement