Advertisement
Guest User

Untitled

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