Advertisement
Guest User

Hackmen

a guest
Oct 7th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.13 KB | None | 0 0
  1.  
  2. -- RBX.Lua LocalScript | Hackerman | xDarkScripter
  3.  
  4.  
  5. local Players = game:GetService("Players")
  6. local UserInputService = game:GetService("UserInputService")
  7. local RunService = game:GetService("RunService")
  8.  
  9. local Player = Players.LocalPlayer
  10. local Camera = workspace.CurrentCamera
  11. local Mouse = Player:GetMouse()
  12.  
  13. local Character = Player.Character
  14. local Torso = Character.Torso
  15.  
  16. local Typing = false
  17. local TypingSub = 1
  18. local TypingSub2 = 1
  19.  
  20. local Neck = Torso.Neck
  21.  
  22. Neck.C1 = CFrame.new(0, -0.5, 0)
  23.  
  24. local RightArm = Character["Right Arm"]
  25. local LeftArm = Character["Left Arm"]
  26.  
  27. local RightShoulder = Instance.new("Weld", Torso)
  28. RightShoulder.Part0 = Torso
  29. RightShoulder.Part1 = RightArm
  30.  
  31. local LeftShoulder = Instance.new("Weld", Torso)
  32. LeftShoulder.Part0 = Torso
  33. LeftShoulder.Part1 = LeftArm
  34.  
  35. RightShoulder.C1 = CFrame.new(-0.5, 0.5, 0)
  36. LeftShoulder.C1 = CFrame.new(0.5, 0.5, 0)
  37.  
  38.  
  39. local Code = [[
  40. -- I failed at stealing my mommy's credit card!
  41.  
  42. Server Proxy Connection Initializing...
  43.  
  44. USERNAME: dantdmbestfan69
  45. PASSWORD: *******************
  46.  
  47.  
  48. ROBLOX Server Database Connecting...
  49.  
  50.  
  51. local Proxy = Server:GetProxyData(1011101)
  52. local Tracker = {}
  53.  
  54. __INIT__ setmetatable(getmetatable(Proxy), {
  55. __metatable = {};
  56. __call = function(Self, ...)
  57. Proxy:GetArgumentData(Proxy.Key, select(...))
  58. end;
  59. })
  60.  
  61. Proxy:TransferData("Lifetime_OBC_Charged",
  62. "ACC_"..__VERSION.."_"..Proxy:GetAccount()
  63. {
  64. __newindex = function(Self, Key, Value)
  65. Tracker[Key] = Value
  66. rawset(Self, Key, Value)
  67. end
  68. })
  69.  
  70. Proxy:GetTransferredData().breakAssymetricEncryption(
  71. "NEW_Public_Key", true, 101, false
  72. )
  73.  
  74.  
  75. ROBLOX Server Log:
  76. > Lifetime OBC Transferred to dantdmbestfan69_*******************
  77.  
  78.  
  79.  
  80.  
  81. ]]
  82.  
  83.  
  84. local Argument = [[
  85. you> hey
  86. ...
  87. bob> hey
  88. ...
  89. bob> btw you're gay
  90. ...
  91. you> What the fuck did you just fucking say about me, you little bitch? I’ll have you know I graduated top of my class in the Navy Seals,
  92. and I’ve been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills. I am trained in gorilla warfare and
  93. I’m the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision
  94. the likes of which has never been seen before on this Earth, mark my fucking words. You think you can get away with saying that shit to me
  95. over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced
  96. right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You’re fucking
  97. dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that’s just with my bare hands. Not only am I
  98. extensively trained in unarmed combat, but I have access to the entire arsenal of the United States Marine Corps and I will use it to its
  99. full extent to wipe your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution
  100. your little “clever” comment was about to bring down upon you, maybe you would have held your fucking tongue. But you couldn’t, you didn’t,
  101. and now you’re paying the price, you goddamn idiot. I will shit fury all over you and you will drown in it. You’re fucking dead, kiddo.
  102. ]]
  103.  
  104.  
  105.  
  106. game.Lighting.GlobalShadows = false
  107. game.Lighting.Brightness = 0.25
  108.  
  109.  
  110. local function Smooth(Part)
  111. Part.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  112. Part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  113. Part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  114. Part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  115. Part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  116. Part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  117. end
  118.  
  119.  
  120. local function SetLine(Line, Alpha, Beta)
  121. local dx = Alpha.Position.X.Scale - Beta.Position.X.Scale
  122. local dy = Alpha.Position.Y.Scale - Beta.Position.Y.Scale
  123. local Magnitude = math.sqrt(dx^2 + dy^2)
  124.  
  125. Line.Size = UDim2.new(Magnitude, 0, 0, 8)
  126. Line.Position = Alpha.Position:Lerp(Beta.Position, 0.5)
  127. Line.Rotation = math.deg(math.atan2(dy, dx))
  128. end
  129.  
  130.  
  131. local Keyboard = Instance.new("Part")
  132. Keyboard.BrickColor = BrickColor.new("Really black")
  133. Keyboard.Material = Enum.Material.Neon
  134. Keyboard.Transparency = 0.1
  135. Keyboard.Size = Vector3.new(5, 0, 2)
  136. Keyboard.CanCollide = false
  137. Keyboard.Locked = true
  138.  
  139. Smooth(Keyboard)
  140.  
  141. local KeyboardWeld = Instance.new("Weld")
  142. KeyboardWeld.Part0 = Torso
  143. KeyboardWeld.Part1 = Keyboard
  144. KeyboardWeld.C0 = CFrame.new(0, 0.2, -2) * CFrame.Angles(0.3, 0, 0)
  145.  
  146. KeyboardWeld.Parent = Keyboard
  147. Keyboard.Parent = Character
  148.  
  149.  
  150. local Light = Instance.new("PointLight")
  151. Light.Brightness = 1.5
  152. Light.Range = 12
  153. Light.Parent = Keyboard
  154.  
  155.  
  156. local Screen = Instance.new("Part")
  157. Screen.BrickColor = BrickColor.new("Really black")
  158. Screen.Material = Enum.Material.Neon
  159. Screen.Transparency = 0.3
  160. Screen.Size = Vector3.new(6, 4, 0)
  161. Screen.CanCollide = false
  162. Screen.Locked = true
  163.  
  164. Smooth(Screen)
  165.  
  166. local ScreenWeld = Instance.new("Weld")
  167. ScreenWeld.Part0 = Torso
  168. ScreenWeld.Part1 = Screen
  169. ScreenWeld.C0 = CFrame.new(0, 3.5, -4.5) * CFrame.Angles(0.1, 0, 0)
  170.  
  171. local Gui = Instance.new("SurfaceGui")
  172. Gui.Face = "Back"
  173. Gui.Adornee = Screen
  174. Gui.Parent = Screen
  175.  
  176. local Text = Instance.new("TextBox")
  177. Text.BackgroundTransparency = 1
  178. Text.Position = UDim2.new(0, 0, 0, 0)
  179. Text.Size = UDim2.new(1, 0, 1, 0)
  180. Text.TextColor3 = Color3.new(1, 1, 1)
  181. Text.Font = Enum.Font.Code
  182. Text.Active = false
  183. Text.MultiLine = true
  184. Text.TextWrapped = true
  185. Text.FontSize = Enum.FontSize.Size32
  186. Text.TextXAlignment = Enum.TextXAlignment.Left
  187. Text.TextYAlignment = Enum.TextYAlignment.Top
  188. Text.Text = ""
  189.  
  190. Text.Parent = Gui
  191.  
  192. ScreenWeld.Parent = Screen
  193. Screen.Parent = Character
  194.  
  195.  
  196.  
  197. local Screen2 = Instance.new("Part")
  198. Screen2.BrickColor = BrickColor.new("Really black")
  199. Screen2.Material = Enum.Material.Neon
  200. Screen2.Transparency = 0.3
  201. Screen2.Size = Vector3.new(6, 4, 0)
  202. Screen2.CanCollide = false
  203. Screen2.Locked = true
  204.  
  205. Smooth(Screen2)
  206.  
  207. local Screen2Weld = Instance.new("Weld")
  208. Screen2Weld.Part0 = Torso
  209. Screen2Weld.Part1 = Screen2
  210. Screen2Weld.C0 = CFrame.new(5.4, 3.4, -1.5) * CFrame.Angles(0.1, -0.9, 0)
  211.  
  212. local Gui2 = Instance.new("SurfaceGui")
  213. Gui2.Face = "Back"
  214. Gui2.Adornee = Screen2
  215. Gui2.Parent = Screen2
  216.  
  217. local Text2 = Instance.new("TextBox")
  218. Text2.BackgroundTransparency = 1
  219. Text2.Position = UDim2.new(0, 0, 0, 0)
  220. Text2.Size = UDim2.new(1, 0, 1, 0)
  221. Text2.TextColor3 = Color3.new(0, 1, 0)
  222. Text2.Font = Enum.Font.Code
  223. Text2.Active = false
  224. Text2.MultiLine = true
  225. Text2.TextWrapped = true
  226. Text2.FontSize = Enum.FontSize.Size32
  227. Text2.TextXAlignment = Enum.TextXAlignment.Left
  228. Text2.TextYAlignment = Enum.TextYAlignment.Top
  229. Text2.Text = ""
  230.  
  231. Text2.Parent = Gui2
  232.  
  233. local ImageKey = Instance.new("ImageLabel")
  234. ImageKey.BackgroundTransparency = 1
  235. ImageKey.Size = UDim2.new(0.2, 0, 0.2, 0)
  236. ImageKey.Position = UDim2.new(0.4, 0, 0.4, 0)
  237. ImageKey.Image = "http://www.roblox.com/asset/?id=697224414"
  238. ImageKey.ImageTransparency = 1
  239. ImageKey.Parent = Gui2
  240.  
  241. Screen2Weld.Parent = Screen2
  242. Screen2.Parent = Character
  243.  
  244.  
  245.  
  246. local Screen3 = Instance.new("Part")
  247. Screen3.BrickColor = BrickColor.new("Really black")
  248. Screen3.Material = Enum.Material.Neon
  249. Screen3.Transparency = 0.3
  250. Screen3.Size = Vector3.new(6, 4, 0)
  251. Screen3.CanCollide = false
  252. Screen3.Locked = true
  253.  
  254. Smooth(Screen3)
  255.  
  256. local Screen3Weld = Instance.new("Weld")
  257. Screen3Weld.Part0 = Torso
  258. Screen3Weld.Part1 = Screen3
  259. Screen3Weld.C0 = CFrame.new(-5.4, 3.4, -1.5) * CFrame.Angles(0.1, 0.9, 0)
  260.  
  261. local Gui3 = Instance.new("SurfaceGui")
  262. Gui3.Face = "Back"
  263. Gui3.Adornee = Screen3
  264. Gui3.Parent = Screen3
  265.  
  266. local Map = Instance.new("ImageLabel")
  267. Map.BackgroundTransparency = 1
  268. Map.Position = UDim2.new(0, 0, 0, 0)
  269. Map.Size = UDim2.new(1, 0, 1, 0)
  270. Map.Image = "http://www.roblox.com/asset/?id=121661614"
  271.  
  272. Map.Parent = Gui3
  273.  
  274. Screen3Weld.Parent = Screen3
  275. Screen3.Parent = Character
  276.  
  277. local Points = {}
  278. local Lines = {}
  279.  
  280. for i = 1, 10 do
  281. if i > 1 then
  282. local Line = Instance.new("Frame")
  283. Line.BorderSizePixel = 0
  284. Line.BackgroundColor3 = Color3.new(0.8, 0, 0)
  285. Line.AnchorPoint = Vector2.new(0.5, 0.5)
  286. Line.Parent = Gui3
  287.  
  288. Lines[i] = Line
  289. end
  290.  
  291. local Point = Instance.new("Frame")
  292. Point.BorderSizePixel = 0
  293. Point.BackgroundColor3 = Color3.new(1, 0, 0)
  294. Point.Size = UDim2.new(0, 40, 0, 40)
  295. Point.Position = UDim2.new(math.random(), 0, math.random(), 0)
  296. Point.AnchorPoint = Vector2.new(0.5, 0.5)
  297. Point.Parent = Gui3
  298.  
  299. Points[i] = {Point = Point, Position = Point.Position}
  300. end
  301.  
  302.  
  303.  
  304.  
  305. UserInputService.InputBegan:Connect(function(Input, Processed)
  306. if Processed then return end
  307.  
  308. if Input.UserInputType == Enum.UserInputType.Keyboard then
  309. local KeyCode = Input.KeyCode
  310.  
  311. if KeyCode == Enum.KeyCode.E then
  312. Typing = not Typing
  313. end
  314. end
  315. end)
  316.  
  317.  
  318.  
  319. RunService.Heartbeat:Connect(function()
  320. local Sine = math.sin(tick() * 8) / 8
  321.  
  322. for Key, Value in next, Points do
  323. Value.Point.Size = UDim2.new(0, 25 + Sine * 40, 0, 25 + Sine * 40)
  324. Value.Point.Position = Value.Point.Position:Lerp(Value.Position, 0.1)
  325.  
  326. if Key > 1 then
  327. SetLine(Lines[Key], Value.Point, Points[1].Point)
  328. end
  329. end
  330.  
  331. if math.random(100) == 1 then
  332. for _, Value in next, Points do
  333. Value.Position = UDim2.new(math.random(), 0, math.random(), 0)
  334. end
  335. end
  336.  
  337. ImageKey.ImageTransparency = math.abs(math.sin(tick()))
  338.  
  339. if Typing then
  340. if math.random(5) == 1 then
  341. local PressSound = Instance.new("Sound")
  342. PressSound.SoundId = "rbxassetid://265970978"
  343. PressSound.Pitch = 0.5 + math.random() / 5
  344. PressSound.Volume = 3
  345. PressSound.Parent = Keyboard
  346. PressSound:Play()
  347.  
  348. game:GetService("Debris"):AddItem(PressSound, 1 / 2)
  349. end
  350.  
  351. Neck.C0 = CFrame.new(0, 1, 0) * CFrame.Angles(-0.2 + Sine / 4, (math.random() - 0.5) / 2, 0)
  352.  
  353. RightShoulder.C0 = CFrame.new(1, 0.6 + math.random() / 4, -math.random() * 0.7)
  354. * CFrame.Angles(1.5 + Sine * math.random(), -Sine / 4, -(0.5 + 2 * Sine * math.random()))
  355.  
  356. LeftShoulder.C0 = CFrame.new(-1, 0.6 + math.random() / 4, -math.random() * 0.7)
  357. * CFrame.Angles(1.5 - Sine * math.random(), Sine / 4, 0.5 + 2 * Sine * math.random())
  358.  
  359. if math.random(2) == 1 then
  360. if TypingSub < #Argument then
  361. TypingSub = TypingSub + 1
  362. Text.Text = Text.Text..Argument:sub(TypingSub, TypingSub)
  363.  
  364. local nl = Text.Text:find("\n")
  365.  
  366. if nl and #Text.Text > 400 then
  367. Text.Text = Text.Text:sub(nl + 1)
  368. end
  369.  
  370. else
  371. TypingSub = 1
  372. end
  373. end
  374.  
  375. if math.random(3) == 1 then
  376. if TypingSub2 < #Code then
  377. TypingSub2 = TypingSub2 + 1
  378. Text2.Text = Text2.Text..Code:sub(TypingSub2, TypingSub2)
  379.  
  380. local nl = Text2.Text:find("\n")
  381.  
  382. if nl and #Text2.Text > 400 then
  383. Text2.Text = Text2.Text:sub(nl + 1)
  384. end
  385.  
  386. else
  387. TypingSub2 = 1
  388. end
  389. end
  390.  
  391. else
  392. Neck.C0 = CFrame.new(0, 1, 0)
  393.  
  394. RightShoulder.C0 = CFrame.new(1, 0.5, 0) * CFrame.Angles(1.5, 0, 0)
  395. LeftShoulder.C0 = CFrame.new(-1, 0.5, 0) * CFrame.Angles(1.5, 0, 0)
  396. end
  397. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement