Advertisement
sneakydodge123

anime

Jul 5th, 2019
1,115
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;print("FE Compatibility: by WaverlyCole");InternalData = {}
  2. do
  3. script.Parent = owner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  5. local function NewFakeEvent()
  6. local Bind = Instance.new("BindableEvent")
  7. local Fake;Fake = {Connections = {},
  8. fakeEvent=true;
  9. Connect=function(self,Func)
  10. Bind.Event:connect(Func)
  11. self.Connections[Bind] = true
  12. return setmetatable({Connected = true},{
  13. __index = function (self,Index)
  14. if Index:lower() == "disconnect" then
  15. return function() Fake.Connections[Bind] = false;self.Connected = false end
  16. end
  17. return Fake[Index]
  18. end;
  19. __tostring = function() return "Connection" end;
  20. })
  21. end}
  22. Fake.connect = Fake.Connect;return Fake;
  23. end
  24. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  25. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  26. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  27. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  28. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  29. local function TriggerEvent(self,Event,...)
  30. local Trigger = Mouse[Event]
  31. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  32. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  33. end
  34. end
  35. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  36. Event.OnServerEvent:Connect(function(FiredBy,Input)
  37. if FiredBy.Name ~= owner.Name then return end
  38. if Input.MouseEvent then
  39. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  40. else
  41. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  42. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  43. for _,Action in pairs(ContextActionService.Actions) do
  44. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  45. end
  46. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  47. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  48. end
  49. end)
  50. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  51. Event.Parent = NLS([[
  52. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  53. local Input = function(Input,gameProcessedEvent)
  54. if gameProcessedEvent then return end
  55. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  56. end
  57. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  58. local Hit,Target
  59. while wait(1/30) do
  60. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  61. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  62. end
  63. end
  64. ]],owner.Character)
  65. end
  66. RealGame = game;game = setmetatable({},{
  67. __index = function (self,Index)
  68. local Sandbox = function (Thing)
  69. if Thing:IsA("Player") then
  70. local RealPlayer = Thing
  71. return setmetatable({},{
  72. __index = function (self,Index)
  73. local Type = type(RealPlayer[Index])
  74. if Type == "function" then
  75. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  76. return function (self)return InternalData["Mouse"] end
  77. end
  78. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  79. end
  80. return RealPlayer[Index]
  81. end;
  82. __tostring = function(self) return RealPlayer.Name end
  83. })
  84. end
  85. end
  86. if RealGame[Index] then
  87. local Type = type(RealGame[Index])
  88. if Type == "function" then
  89. if Index:lower() == "getservice" or Index:lower() == "service" then
  90. return function (self,Service)
  91. local FakeServices = {
  92. ["players"] = function()
  93. return setmetatable({},{
  94. __index = function (self2,Index2)
  95. local RealService = RealGame:GetService(Service)
  96. local Type2 = type(Index2)
  97. if Type2 == "function" then
  98. return function (self,...) return RealService[Index2](RealService,...)end
  99. else
  100. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  101. return RealService[Index2]
  102. end
  103. end;
  104. __tostring = function(self) return RealGame:GetService(Service).Name end
  105. })
  106. end;
  107. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  108. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  109. ["runservice"] = function()
  110. return setmetatable({},{
  111. __index = function(self2,Index2)
  112. local RealService = RealGame:GetService(Service)
  113. local Type2 = type(Index2)
  114. if Type2 == "function" then
  115. return function (self,...) return RealService[Index2](RealService,...) end
  116. else
  117. local RunServices = {
  118. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  119. ["renderstepped"] = function() return RealService["Stepped"] end
  120. }
  121. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  122. return RealService[Index2]
  123. end
  124. end
  125. })
  126. end
  127. }
  128. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  129. return RealGame:GetService(Service)
  130. end
  131. end
  132. return function (self,...) return RealGame[Index](RealGame,...) end
  133. else
  134. if game:GetService(Index) then return game:GetService(Index) end
  135. return RealGame[Index]
  136. end
  137. end
  138. return nil
  139. end
  140. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  141.  
  142.  
  143. --how tf did u find dis aaaaa
  144. --Anyways, enjoy this laptop I made.
  145. --But also prepare for alot of anime hell kthx.
  146.  
  147. function sandbox(var,func)
  148. local env = getfenv(func)
  149. local newenv = setmetatable({},{
  150. __index = function(self,k)
  151. if k=="script" then
  152. return var
  153. else
  154. return env[k]
  155. end
  156. end,
  157. })
  158. setfenv(func,newenv)
  159. return func
  160. end
  161. cors = {}
  162. mas = Instance.new("Model",game:GetService("Lighting"))
  163. Model0 = Instance.new("Model")
  164. Part1 = Instance.new("Part")
  165. SurfaceGui2 = Instance.new("SurfaceGui")
  166. TextLabel3 = Instance.new("TextLabel")
  167. Decal4 = Instance.new("Decal")
  168. Script5 = Instance.new("Script")
  169. Sound6 = Instance.new("Sound")
  170. Part7 = Instance.new("Part")
  171. Decal8 = Instance.new("Decal")
  172. Model0.Name = "Anime"
  173. Model0.Parent = mas
  174. Part1.Name = "bosh"
  175. Part1.Parent = Model0
  176. Part1.BrickColor = BrickColor.new("Black")
  177. Part1.Rotation = Vector3.new(-180, 0, -180)
  178. Part1.Anchored = true
  179. Part1.Size = Vector3.new(125.81002, 85.8600006, 2)
  180. Part1.CFrame = CFrame.new(-8.22500515, 42.9300766, -33.4600029, -1.00000441, 0, -7.83801079e-06, 0, 1, 0, 7.83801079e-06, 0, -1.00000441)
  181. Part1.Color = Color3.new(0.105882, 0.164706, 0.207843)
  182. Part1.Position = Vector3.new(-8.22500515, 42.9300766, -33.4600029)
  183. Part1.Orientation = Vector3.new(0, -180, 0)
  184. Part1.Color = Color3.new(0.105882, 0.164706, 0.207843)
  185. SurfaceGui2.Parent = Part1
  186. TextLabel3.Parent = SurfaceGui2
  187. TextLabel3.Transparency = 0
  188. TextLabel3.Size = UDim2.new(0, 800, 0, 600)
  189. TextLabel3.Text = "..."
  190. TextLabel3.Active = true
  191. TextLabel3.BackgroundColor3 = Color3.new(1, 1, 1)
  192. TextLabel3.BackgroundTransparency = 0
  193. TextLabel3.BorderColor3 = Color3.new(1, 1, 1)
  194. TextLabel3.BorderSizePixel = 2
  195. TextLabel3.Font = Enum.Font.SourceSans
  196. TextLabel3.FontSize = Enum.FontSize.Size96
  197. TextLabel3.TextColor3 = Color3.new(0, 0, 0)
  198. TextLabel3.TextScaled = true
  199. TextLabel3.TextStrokeColor3 = Color3.new(1, 1, 1)
  200. TextLabel3.TextWrapped = true
  201. Decal4.Parent = Part1
  202. Script5.Parent = Part1
  203. table.insert(cors,sandbox(Script5,function()
  204. game.Workspace.Anime.Sound:Play()
  205. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "song name = rick astley hentai or something"
  206. wait(5)
  207. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "Oh oh oh"
  208. wait(2)
  209. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "I want a hentai girl for me to make me happy"
  210. wait(4)
  211. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "I want her so I can stop using my hand"
  212. wait(4)
  213. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "Every single day, while watching anime"
  214. wait(2.5)
  215. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "I'd pull her from my screen, just like in my dreams"
  216. wait(3)
  217. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "I want to feel her touch OH mainly on my crotch AH AH"
  218. wait(3.5)
  219. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "I want my own hentai girl"
  220. wait(4)
  221. game.Workspace.Anime.bosh.SurfaceGui.TextLabel.Text = "And she would sing:"
  222. wait(2.7)
  223. game.Workspace.Anime.bosh.SurfaceGui:Destroy()
  224.  
  225.  
  226. while true do
  227. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=31844995"
  228. wait(0.37)
  229. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=69154140"
  230. wait(0.37)
  231. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=165913938"
  232. wait(0.37)
  233. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=286214428"
  234. wait(0.37)
  235. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=325816951"
  236. wait(0.37)
  237. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=213148631"
  238. wait(0.37)
  239. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=170179353"
  240. wait(0.37)
  241. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=170025784"
  242. wait(0.37)
  243. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=317081883"
  244. wait(0.37)
  245. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=557406454"
  246. wait(0.37)
  247. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=45535348"
  248. wait(0.37)
  249. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=143569264"
  250. wait(0.37)
  251. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=468837051"
  252. wait(0.37)
  253. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=468839008"
  254. wait(0.37)
  255. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=157918222"
  256. wait(0.37)
  257. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=511426505"
  258. wait(0.37)
  259. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=1065873186"
  260. wait(0.37)
  261. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=271028167"
  262. wait(0.37)
  263. game.Workspace.Anime.bosh.Decal.Texture = "http://www.roblox.com/asset/?id=512126210"
  264. wait(0.37)
  265. end
  266.  
  267. end))
  268. Sound6.Parent = Model0
  269. Sound6.SoundId = "rbxassetid://881545277"
  270. Sound6.Volume = 10
  271. Part7.Parent = Model0
  272. Part7.BrickColor = BrickColor.new("Black")
  273. Part7.Rotation = Vector3.new(-180, 0, 180)
  274. Part7.Anchored = true
  275. Part7.Size = Vector3.new(125.819984, 1, 95.8000031)
  276. Part7.CFrame = CFrame.new(-8.2001152, 0.50002408, 15.4189072, -1.00000048, -2.17944465e-11, 2.33799219e-05, 2.0634161e-11, 1, 1.80308643e-06, -2.33799219e-05, 1.8030853e-06, -1.00000048)
  277. Part7.BottomSurface = Enum.SurfaceType.Smooth
  278. Part7.TopSurface = Enum.SurfaceType.Smooth
  279. Part7.Color = Color3.new(0.105882, 0.164706, 0.207843)
  280. Part7.Position = Vector3.new(-8.2001152, 0.50002408, 15.4189072)
  281. Part7.Orientation = Vector3.new(0, 180, 0)
  282. Part7.Color = Color3.new(0.105882, 0.164706, 0.207843)
  283. Decal8.Parent = Part7
  284. Decal8.Texture = "http://www.roblox.com/asset/?id=122001527"
  285. Decal8.Face = Enum.NormalId.Top
  286. for i,v in pairs(mas:GetChildren()) do
  287. v.Parent = workspace
  288. pcall(function() v:MakeJoints() end)
  289. end
  290. mas:Destroy()
  291. for i,v in pairs(cors) do
  292. spawn(function()
  293. pcall(v)
  294. end)
  295. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement