SSTheEditer

(Hackerman | Converted)

Feb 28th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
  2. print("FE Compatibility code by Mokiros")
  3. InternalData = {}
  4. do
  5. script.Parent = owner.Character
  6. local Event = Instance.new("RemoteEvent")
  7. Event.Name = "UserInput"
  8. local function NewFakeEvent()
  9. local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
  10. return Fake
  11. end
  12. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  13. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  14. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  15. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  16. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  17. local function TriggerEvent(self,Event,...)
  18. local Trigger = Mouse[Event]
  19. if Trigger and Trigger.fakeEvent and Trigger.Function then
  20. Trigger.Function(...)
  21. end
  22. end
  23. Mouse.TrigEvent = TriggerEvent
  24. UserInputService.TrigEvent = TriggerEvent
  25. Event.OnServerEvent:Connect(function(FiredBy,Input)
  26. if FiredBy.Name ~= owner.Name then end
  27. if Input.MouseEvent then
  28. Mouse.Target = Input.Target
  29. Mouse.Hit = Input.Hit
  30. else
  31. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  32. if Input.UserInputType == Enum.UserInputType.MouseButton1 then
  33. return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
  34. end
  35. for _,Action in pairs(ContextActionService.Actions) do
  36. for _,Key in pairs(Action.Keys) do
  37. if Key==Input.KeyCode then
  38. Action.Function(Action.Name,Input.UserInputState,Input)
  39. end
  40. end
  41. end
  42. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  43. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  44. end
  45. end)
  46. InternalData["Mouse"] = Mouse
  47. InternalData["ContextActionService"] = ContextActionService
  48. InternalData["UserInputService"] = UserInputService
  49. Event.Parent = NLS([[
  50. local Player = owner
  51. local Event = script:WaitForChild("UserInput")
  52. local UserInputService = game:GetService("UserInputService")
  53. local Mouse = Player:GetMouse()
  54. local Input = function(Input,gameProcessedEvent)
  55. if gameProcessedEvent then return end
  56. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  57. end
  58. UserInputService.InputBegan:Connect(Input)
  59. UserInputService.InputEnded:Connect(Input)
  60. local Hit,Target
  61. while wait(1/30) do
  62. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  63. Hit,Target = Mouse.Hit,Mouse.Target
  64. Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  65. end
  66. end
  67. ]],owner.Character)
  68. end
  69. RealGame = game;game = setmetatable({},{
  70. __index = function (self,Index)
  71. local Sandbox = function (Thing)
  72. if Thing:IsA("Player") then
  73. local RealPlayer = Thing
  74. return setmetatable({},{
  75. __index = function (self,Index)
  76. local Type = type(RealPlayer[Index])
  77. if Type == "function" then
  78. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  79. return function (self)
  80. return InternalData["Mouse"]
  81. end
  82. end
  83. return function (self,...)
  84. return RealPlayer[Index](RealPlayer,...)
  85. end
  86. else
  87. if Index == "PlrObj" then
  88. return RealPlayer
  89. end
  90. return RealPlayer[Index]
  91. end
  92. end;
  93. __tostring = function(self)
  94. return RealPlayer.Name
  95. end
  96. })
  97. end
  98. end
  99. if RealGame[Index] then
  100. local Type = type(RealGame[Index])
  101. if Type == "function" then
  102. if Index:lower() == "getservice" or Index:lower() == "service" then
  103. return function (self,Service)
  104. if Service:lower() == "players" then
  105. return setmetatable({},{
  106. __index = function (self2,Index2)
  107. local RealService = RealGame:GetService(Service)
  108. local Type2 = type(Index2)
  109. if Type2 == "function" then
  110. return function (self,...)
  111. return RealService[Index2](RealService,...)
  112. end
  113. else
  114. if Index2:lower() == "localplayer" then
  115. return Sandbox(owner)
  116. end
  117. return RealService[Index2]
  118. end
  119. end;
  120. __tostring = function(self)
  121. return RealGame:GetService(Service).Name
  122. end
  123. })
  124. elseif Service:lower() == "contextactionservice" then
  125. return InternalData["ContextActionService"]
  126. elseif Service:lower() == "contextactionservice" then
  127. return InternalData["UserInputService"]
  128. elseif Service:lower() == "runservice" then
  129. return setmetatable({},{
  130. __index = function(self2,Index2)
  131. local RealService = RealGame:GetService(Service)
  132. local Type2 = type(Index2)
  133. if Type2 == "function" then
  134. return function (self,...)
  135. return RealService[Index2](RealService,...)
  136. end
  137. else
  138. if Index2:lower() == "bindtorenderstep" then
  139. return function (self,Name,Priority,Function)
  140. return RealGame:GetService("RunService").Stepped:Connect(Function)
  141. end
  142. end
  143. if Index2:lower() == "renderstepped" then
  144. return RealService["Stepped"]
  145. end
  146. return RealService[Index2]
  147. end
  148. end
  149. })
  150. else
  151. return RealGame:GetService(Service)
  152. end
  153. end
  154. end
  155. return function (self,...)
  156. return RealGame[Index](RealGame,...)
  157. end
  158. else
  159. if game:GetService(Index) then
  160. return game:GetService(Index)
  161. end
  162. return RealGame[Index]
  163. end
  164. else
  165. return nil
  166. end
  167. end
  168. });Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
  169. print("Complete! Running...")
  170.  
  171.  
  172. --//Paste script below this line.
  173.  
  174. local Players = game:GetService("Players")
  175. local UserInputService = game:GetService("UserInputService")
  176. local RunService = game:GetService("RunService")
  177.  
  178. local Player = Players.LocalPlayer
  179. local Camera = workspace.CurrentCamera
  180. local Mouse = Player:GetMouse()
  181.  
  182. local Character = Player.Character
  183. local Torso = Character.Torso
  184.  
  185. local Typing = false
  186. local TypingSub = 1
  187. local TypingSub2 = 1
  188.  
  189. local Neck = Torso.Neck
  190.  
  191. Neck.C1 = CFrame.new(0, -0.5, 0)
  192.  
  193. local RightArm = Character["Right Arm"]
  194. local LeftArm = Character["Left Arm"]
  195.  
  196. local RightShoulder = Instance.new("Weld", Torso)
  197. RightShoulder.Part0 = Torso
  198. RightShoulder.Part1 = RightArm
  199.  
  200. local LeftShoulder = Instance.new("Weld", Torso)
  201. LeftShoulder.Part0 = Torso
  202. LeftShoulder.Part1 = LeftArm
  203.  
  204. RightShoulder.C1 = CFrame.new(-0.5, 0.5, 0)
  205. LeftShoulder.C1 = CFrame.new(0.5, 0.5, 0)
  206.  
  207.  
  208. local Code = [[
  209. -- I failed at downloading ssf2
  210.  
  211. Server Proxy Connection Initializing...
  212.  
  213. USERNAME: Zneakyblox
  214. PASSWORD: ???
  215.  
  216.  
  217. ROBLOX Server Database Connecting...
  218.  
  219.  
  220. local Proxy = Server:GetMemeData(1011101)
  221. local Tracker = {}
  222.  
  223. __INIT__ setmetatable(getmetatable(Meme), {
  224. __metatable = {};
  225. __call = function(Self, ...)
  226. Proxy:GetArgumentData(MEME.Key, select(...))
  227. end;
  228. })
  229.  
  230. Proxy:TransferData("Lifetime_OBC_Charged",
  231. "ACCVERSION_89_MEME:GetAccount()
  232. {
  233. __newindex = function(Self, Key, Value)
  234. Tracker[Key] = Value
  235. rawset(Self, Key, Value)
  236. end
  237. })
  238.  
  239. Proxy:GetTransferredData().breakAssymetricEncryption(
  240. "NEW_MEME_KEY", true, 102, false
  241. )
  242.  
  243.  
  244. ROBLOX Server Log:
  245. > 420 Robux Transferred to Snoop Dog???
  246.  
  247. Spicy Memes
  248.  
  249. ERROR<Tried to Give 69000 Robux to Dumbassbird1, Failed To Give 69000 Robux , deleting Sammy>
  250. Deleting Sammyclassicsonicfan..50%
  251. Deleting Sammyclassicsonicfan..100%
  252. Successfully deleted Sammyclassicsonicfan.
  253. Message<WHY SONIC WHY SONIC WHY SONIC!!!
  254. NASA FOUND
  255. <div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div>
  256.  
  257.  
  258.  
  259.  
  260.  
  261. ]]
  262.  
  263.  
  264. local Argument = [[
  265.  
  266. You> 11000011001101
  267.  
  268. You> 00110000011110
  269.  
  270. You> 1100011
  271.  
  272. You> 000111100
  273.  
  274. You> End(Server)
  275.  
  276. Server> Server ended.
  277.  
  278. Discord> Joining VoidSB Discord..
  279.  
  280. Server> Joined VoidSB Discord!
  281.  
  282. You > XAXAXAXAXAXA, Stupid Skid's.
  283.  
  284. Server> You got banned for An Lifetime because of 'XAXAXAXAXAXA, Stupid Skid's.'!
  285.  
  286. You> 11000011001101
  287.  
  288. You> 00110000011110
  289.  
  290. You> 1100011
  291.  
  292. You> 000111100
  293.  
  294. You> Delete(VoidSB)
  295.  
  296. Server> Server deleted.
  297.  
  298. Discord> Finding Russia's Vodka Party..
  299. Discord> Founded Russia's Party!
  300.  
  301. Google> Searching NASA
  302. Google> Success!
  303. IP : 15.90.138.102
  304. Money : 139.1B
  305. Phone : 202-555-0179
  306.  
  307. You> Damn, NASA got some money.
  308.  
  309. You> GET NASA MONEY
  310.  
  311. You> =GETTING NASA MONEY=
  312.  
  313. NEWS> we heard that nasa got no money
  314.  
  315. You> Now it's time for ROBLOX
  316.  
  317. You> <div class="navbar navbar-default navbar-static-top"
  318.  
  319. You> This should be happening now.
  320.  
  321. ROBLOX> Roblox is currently under going maintence.. We'll be back up soon!
  322.  
  323. You> I'm going to Hack Russia.. Yet Again.
  324.  
  325. You> <li class="item item-fandom" data-flag=""destroy:="
  326.  
  327. Russia> People are getting Hacked out of no where!
  328.  
  329. You> =Uses Slav hacks=
  330.  
  331. You> I add a New Russia.. For No Reason.
  332.  
  333. You> 12.89
  334.  
  335. Update : "Added New Russia"
  336. ]]
  337.  
  338.  
  339.  
  340. game.Lighting.GlobalShadows = false
  341. game.Lighting.Brightness = 0.25
  342.  
  343.  
  344. local function Smooth(Part)
  345. Part.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  346. Part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  347. Part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  348. Part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  349. Part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  350. Part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  351. end
  352.  
  353.  
  354. local function SetLine(Line, Alpha, Beta)
  355. local dx = Alpha.Position.X.Scale - Beta.Position.X.Scale
  356. local dy = Alpha.Position.Y.Scale - Beta.Position.Y.Scale
  357. local Magnitude = math.sqrt(dx^2 + dy^2)
  358.  
  359. Line.Size = UDim2.new(Magnitude, 0, 0, 8)
  360. Line.Position = Alpha.Position:Lerp(Beta.Position, 0.5)
  361. Line.Rotation = math.deg(math.atan2(dy, dx))
  362. end
  363.  
  364.  
  365. local Keyboard = Instance.new("Part")
  366. Keyboard.BrickColor = BrickColor.new("Lsvender")
  367. Keyboard.Material = Enum.Material.Neon
  368. Keyboard.Transparency = 0.6
  369. Keyboard.Size = Vector3.new(5, 0, 2)
  370. Keyboard.CanCollide = false
  371. Keyboard.Locked = true
  372.  
  373. Smooth(Keyboard)
  374.  
  375. local KeyboardWeld = Instance.new("Weld")
  376. KeyboardWeld.Part0 = Torso
  377. KeyboardWeld.Part1 = Keyboard
  378. KeyboardWeld.C0 = CFrame.new(0, 0.2, -2) * CFrame.Angles(0.3, 0, 0)
  379.  
  380. KeyboardWeld.Parent = Keyboard
  381. Keyboard.Parent = Character
  382.  
  383.  
  384. local Light = Instance.new("PointLight")
  385. Light.Brightness = 1.5
  386. Light.Range = 12
  387. Light.Parent = Keyboard
  388.  
  389.  
  390. local Screen = Instance.new("Part")
  391. Screen.BrickColor = BrickColor.new("Really black")
  392. Screen.Material = Enum.Material.Neon
  393. Screen.Transparency = 0.6
  394. Screen.Size = Vector3.new(6, 4, 0)
  395. Screen.CanCollide = false
  396. Screen.Locked = true
  397.  
  398. Smooth(Screen)
  399.  
  400. local ScreenWeld = Instance.new("Weld")
  401. ScreenWeld.Part0 = Torso
  402. ScreenWeld.Part1 = Screen
  403. ScreenWeld.C0 = CFrame.new(0, 3.5, -4.5) * CFrame.Angles(0.1, 0, 0)
  404.  
  405. local animeh = Instance.new("Part")
  406. animeh.BrickColor = BrickColor.new("Really black")
  407. animeh.Material = Enum.Material.Neon
  408. animeh.Transparency = 0.6
  409. animeh.Size = Vector3.new(6, 4, 0)
  410. animeh.CanCollide = false
  411. animeh.Locked = true
  412.  
  413. local dekal = Instance.new("Decal",animeh)
  414. dekal.Texture = "http://www.roblox.com/asset/?id=626650325"
  415. dekal.Transparency = 0.15
  416. dekal.Face = "Back"
  417.  
  418. Smooth(animeh)
  419.  
  420. local animehw = Instance.new("Weld")
  421. animehw.Part0 = Torso
  422. animehw.Part1 = animeh
  423. animehw.C0 = CFrame.new(0, 8, -4) * CFrame.Angles(.5,0,0)
  424.  
  425. animehw.Parent = animeh
  426. animeh.Parent = Character
  427.  
  428. local Gui = Instance.new("SurfaceGui")
  429. Gui.Face = "Back"
  430. Gui.Adornee = Screen
  431. Gui.Parent = Screen
  432.  
  433. local Text = Instance.new("TextBox")
  434. Text.BackgroundTransparency = 1
  435. Text.Position = UDim2.new(0, 0, 0, 0)
  436. Text.Size = UDim2.new(1, 0, 1, 0)
  437. Text.TextColor3 = Color3.new(1, 1, 1)
  438. Text.Font = Enum.Font.Code
  439. Text.Active = false
  440. Text.MultiLine = true
  441. Text.TextWrapped = true
  442. Text.FontSize = Enum.FontSize.Size32
  443. Text.TextXAlignment = Enum.TextXAlignment.Left
  444. Text.TextYAlignment = Enum.TextYAlignment.Top
  445. Text.Text = ""
  446.  
  447. Text.Parent = Gui
  448.  
  449. ScreenWeld.Parent = Screen
  450. Screen.Parent = Character
  451.  
  452.  
  453.  
  454. local Screen2 = Instance.new("Part")
  455. Screen2.BrickColor = BrickColor.new("Really black")
  456. Screen2.Material = Enum.Material.Neon
  457. Screen2.Transparency = 0.6
  458. Screen2.Size = Vector3.new(6, 4, 0)
  459. Screen2.CanCollide = false
  460. Screen2.Locked = true
  461.  
  462. Smooth(Screen2)
  463.  
  464. local Screen2Weld = Instance.new("Weld")
  465. Screen2Weld.Part0 = Torso
  466. Screen2Weld.Part1 = Screen2
  467. Screen2Weld.C0 = CFrame.new(5.4, 3.4, -1.5) * CFrame.Angles(0.1, -0.9, 0)
  468.  
  469. local Gui2 = Instance.new("SurfaceGui")
  470. Gui2.Face = "Back"
  471. Gui2.Adornee = Screen2
  472. Gui2.Parent = Screen2
  473.  
  474. local Text2 = Instance.new("TextBox")
  475. Text2.BackgroundTransparency = 1
  476. Text2.Position = UDim2.new(0, 0, 0, 0)
  477. Text2.Size = UDim2.new(1, 0, 1, 0)
  478. Text2.TextColor3 = Color3.new(0, 1, 0)
  479. Text2.Font = Enum.Font.Code
  480. Text2.Active = false
  481. Text2.MultiLine = true
  482. Text2.TextWrapped = true
  483. Text2.FontSize = Enum.FontSize.Size32
  484. Text2.TextXAlignment = Enum.TextXAlignment.Left
  485. Text2.TextYAlignment = Enum.TextYAlignment.Top
  486. Text2.Text = ""
  487.  
  488. Text2.Parent = Gui2
  489.  
  490. local ImageKey = Instance.new("ImageLabel")
  491. ImageKey.BackgroundTransparency = 1
  492. ImageKey.Size = UDim2.new(0.2, 0, 0.2, 0)
  493. ImageKey.Position = UDim2.new(0.4, 0, 0.4, 0)
  494. ImageKey.Image = "http://www.roblox.com/asset/?id=0"
  495. ImageKey.ImageTransparency = 1
  496. ImageKey.Parent = Gui2
  497.  
  498. Screen2Weld.Parent = Screen2
  499. Screen2.Parent = Character
  500.  
  501.  
  502.  
  503. local Screen3 = Instance.new("Part")
  504. Screen3.BrickColor = BrickColor.new("Really black")
  505. Screen3.Material = Enum.Material.Neon
  506. Screen3.Transparency = 0.6
  507. Screen3.Size = Vector3.new(6, 4, 0)
  508. Screen3.CanCollide = false
  509. Screen3.Locked = true
  510.  
  511. local dekal = Instance.new("Decal",Screen3)
  512. dekal.Texture = "http://www.roblox.com/asset/?id=0"
  513. dekal.Transparency = 0.15
  514. dekal.Face = "Back"
  515.  
  516. Smooth(Screen3)
  517.  
  518. local Screen3Weld = Instance.new("Weld")
  519. Screen3Weld.Part0 = Torso
  520. Screen3Weld.Part1 = Screen3
  521. Screen3Weld.C0 = CFrame.new(-5.4, 3.4, -1.5) * CFrame.Angles(0.1, 0.9, 0)
  522.  
  523. local Gui3 = Instance.new("SurfaceGui")
  524. Gui3.Face = "Back"
  525. Gui3.Adornee = Screen3
  526. Gui3.Parent = Screen3
  527.  
  528. local Map = Instance.new("ImageLabel")
  529. Map.BackgroundTransparency = 1
  530. Map.Position = UDim2.new(0, 0, 0, 0)
  531. Map.Size = UDim2.new(1, 0, 1, 0)
  532. Map.Image = "http://www.roblox.com/asset/?id=121661614"
  533.  
  534. Map.Parent = Gui3
  535.  
  536. Screen3Weld.Parent = Screen3
  537. Screen3.Parent = Character
  538.  
  539. UserInputService.InputBegan:Connect(function(Input, Processed)
  540. if Processed then return end
  541.  
  542. if Input.UserInputType == Enum.UserInputType.Keyboard then
  543. local KeyCode = Input.KeyCode
  544.  
  545. if KeyCode == Enum.KeyCode.E then
  546. Typing = not Typing
  547. end
  548. end
  549. end)
  550.  
  551.  
  552.  
  553. RunService.Heartbeat:Connect(function()
  554. local Sine = math.sin(tick() * 8) / 8
  555.  
  556. ImageKey.ImageTransparency = math.abs(math.sin(tick()))
  557.  
  558. if Typing then
  559. if math.random(5) == 1 then
  560. local PressSound = Instance.new("Sound")
  561. PressSound.SoundId = "rbxassetid://265970978"
  562. PressSound.Pitch = 0.5 + math.random() / 5
  563. PressSound.Volume = 3
  564. PressSound.Parent = Keyboard
  565. PressSound:Play()
  566.  
  567. game:GetService("Debris"):AddItem(PressSound, 1 / 2)
  568. end
  569.  
  570. Neck.C0 = CFrame.new(0, 1, 0) * CFrame.Angles(-0.2 + Sine / 4, (math.random() - 0.5) / 2, 0)
  571.  
  572. RightShoulder.C0 = CFrame.new(1, 0.6 + math.random() / 4, -math.random() * 0.7)
  573. * CFrame.Angles(1.5 + Sine * math.random(), -Sine / 4, -(0.5 + 2 * Sine * math.random()))
  574.  
  575. LeftShoulder.C0 = CFrame.new(-1, 0.6 + math.random() / 4, -math.random() * 0.7)
  576. * CFrame.Angles(1.5 - Sine * math.random(), Sine / 4, 0.5 + 2 * Sine * math.random())
  577.  
  578. if math.random(2) == 1 then
  579. if TypingSub < #Argument then
  580. TypingSub = TypingSub + 1
  581. Text.Text = Text.Text..Argument:sub(TypingSub, TypingSub)
  582.  
  583. local nl = Text.Text:find("\n")
  584.  
  585. if nl and #Text.Text > 400 then
  586. Text.Text = Text.Text:sub(nl + 1)
  587. end
  588.  
  589. else
  590. TypingSub = 1
  591. end
  592. end
  593.  
  594. if math.random(3) == 1 then
  595. if TypingSub2 < #Code then
  596. TypingSub2 = TypingSub2 + 1
  597. Text2.Text = Text2.Text..Code:sub(TypingSub2, TypingSub2)
  598.  
  599. local nl = Text2.Text:find("\n")
  600.  
  601. if nl and #Text2.Text > 400 then
  602. Text2.Text = Text2.Text:sub(nl + 1)
  603. end
  604.  
  605. else
  606. TypingSub2 = 1
  607. end
  608. end
  609.  
  610. else
  611. Neck.C0 = CFrame.new(0, 1, 0)
  612.  
  613. RightShoulder.C0 = CFrame.new(1, 0.5, 0) * CFrame.Angles(1.5, 0, 0)
  614. LeftShoulder.C0 = CFrame.new(-1, 0.5, 0) * CFrame.Angles(1.5, 0, 0)
  615. end
  616. end)
Add Comment
Please, Sign In to add comment