Advertisement
nutellaman123

Untitled

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