ForkFullFight

Test

Jul 3rd, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.34 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. -- Gui to Lua
  153. -- Version: 3.2
  154.  
  155. -- Instances:
  156.  
  157. local animation = Instance.new("ScreenGui")
  158. local Shadow = Instance.new("Frame")
  159. local Shadow_2 = Instance.new("Folder")
  160. local Frame = Instance.new("Frame")
  161. local Frame_2 = Instance.new("Frame")
  162. local mainFrame = Instance.new("ImageLabel")
  163. local topbarFrame = Instance.new("ImageLabel")
  164. local miniBtn = Instance.new("ImageButton")
  165. local miniLabel = Instance.new("TextLabel")
  166. local Minimize = Instance.new("TextButton")
  167. local Hi = Instance.new("TextLabel")
  168. local sunglasseslogo = Instance.new("ImageLabel")
  169. local TextLabel = Instance.new("TextLabel")
  170. local exitBtn = Instance.new("ImageButton")
  171. local exitLabel = Instance.new("TextLabel")
  172. local Exit = Instance.new("TextButton")
  173. local player = Instance.new("TextBox")
  174. local under = Instance.new("Frame")
  175. local r6 = Instance.new("TextButton")
  176. local sep = Instance.new("Frame")
  177. local play = Instance.new("TextButton")
  178. local profile = Instance.new("TextButton")
  179. local sep_2 = Instance.new("Frame")
  180. local Message = Instance.new("TextLabel")
  181. local profile_2 = Instance.new("Frame")
  182. local Shadow_3 = Instance.new("Folder")
  183. local Frame_3 = Instance.new("Frame")
  184. local Frame_4 = Instance.new("Frame")
  185. local mainFrame_2 = Instance.new("ImageLabel")
  186. local topbarFrame_2 = Instance.new("ImageLabel")
  187. local miniBtn_2 = Instance.new("ImageButton")
  188. local miniLabel_2 = Instance.new("TextLabel")
  189. local Minimize_2 = Instance.new("TextButton")
  190. local Hi_2 = Instance.new("TextLabel")
  191. local sunglasseslogo_2 = Instance.new("ImageLabel")
  192. local TextLabel_2 = Instance.new("TextLabel")
  193. local exitBtn_2 = Instance.new("ImageButton")
  194. local exitLabel_2 = Instance.new("TextLabel")
  195. local Exit_2 = Instance.new("TextButton")
  196. local pfp = Instance.new("ImageLabel")
  197. local under_2 = Instance.new("ImageLabel")
  198. local top = Instance.new("Frame")
  199. local uaid = Instance.new("TextLabel")
  200. local sep_3 = Instance.new("Frame")
  201. local _1 = Instance.new("TextLabel")
  202. local Message_2 = Instance.new("TextLabel")
  203.  
  204. --Properties:
  205.  
  206. animation.Name = "animation"
  207. animation.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  208. animation.ResetOnSpawn = false
  209.  
  210. Shadow.Name = "Shadow"
  211. Shadow.Parent = animation
  212. Shadow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  213. Shadow.BackgroundTransparency = 1.000
  214. Shadow.BorderSizePixel = 0
  215. Shadow.Position = UDim2.new(0.616363645, -294, 0.598280072, -149)
  216. Shadow.Size = UDim2.new(0, 267, 0, 170)
  217.  
  218. Shadow_2.Name = "Shadow"
  219. Shadow_2.Parent = Shadow
  220.  
  221. Frame.Parent = Shadow_2
  222. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  223. Frame.BorderSizePixel = 0
  224. Frame.Position = UDim2.new(0, -4, 0, -4)
  225. Frame.Size = UDim2.new(1, 8, 1, 8)
  226. Frame.Style = Enum.FrameStyle.DropShadow
  227.  
  228. Frame_2.Parent = Frame
  229. Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  230. Frame_2.BackgroundTransparency = 1.000
  231. Frame_2.BorderColor3 = Color3.fromRGB(27, 42, 53)
  232. Frame_2.BorderSizePixel = 0
  233. Frame_2.Position = UDim2.new(0, -4, 0, -4)
  234. Frame_2.Size = UDim2.new(1, 8, 1, 8)
  235.  
  236. mainFrame.Name = "mainFrame"
  237. mainFrame.Parent = Shadow
  238. mainFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  239. mainFrame.BackgroundTransparency = 1.000
  240. mainFrame.BorderSizePixel = 0
  241. mainFrame.ClipsDescendants = true
  242. mainFrame.Position = UDim2.new(-0.000796778651, 0, -0.00258674752, 0)
  243. mainFrame.Size = UDim2.new(0, 264, 0, 168)
  244. mainFrame.Image = "http://www.roblox.com/asset/?id=4530318781"
  245. mainFrame.ImageColor3 = Color3.fromRGB(32, 32, 32)
  246. mainFrame.ScaleType = Enum.ScaleType.Slice
  247. mainFrame.SliceCenter = Rect.new(20, 20, 480, 480)
  248.  
  249. topbarFrame.Name = "topbarFrame"
  250. topbarFrame.Parent = mainFrame
  251. topbarFrame.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  252. topbarFrame.BackgroundTransparency = 1.000
  253. topbarFrame.BorderSizePixel = 0
  254. topbarFrame.Size = UDim2.new(0, 587, 0, 33)
  255. topbarFrame.Image = "http://www.roblox.com/asset/?id=4530319192"
  256. topbarFrame.ImageColor3 = Color3.fromRGB(24, 24, 24)
  257. topbarFrame.ScaleType = Enum.ScaleType.Slice
  258. topbarFrame.SliceCenter = Rect.new(20, 20, 480, 480)
  259.  
  260. miniBtn.Name = "miniBtn"
  261. miniBtn.Parent = topbarFrame
  262. miniBtn.AnchorPoint = Vector2.new(0, 0.5)
  263. miniBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  264. miniBtn.BackgroundTransparency = 1.000
  265. miniBtn.BorderColor3 = Color3.fromRGB(27, 42, 53)
  266. miniBtn.BorderSizePixel = 0
  267. miniBtn.Position = UDim2.new(0, 531, 0.5, 0)
  268. miniBtn.Size = UDim2.new(0, 19, 0, 19)
  269. miniBtn.Image = "http://www.roblox.com/asset/?id=4132450915"
  270. miniBtn.ImageColor3 = Color3.fromRGB(140, 30, 49)
  271. miniBtn.ImageTransparency = 1.000
  272.  
  273. miniLabel.Name = "miniLabel"
  274. miniLabel.Parent = miniBtn
  275. miniLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  276. miniLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  277. miniLabel.BackgroundTransparency = 1.000
  278. miniLabel.BorderSizePixel = 0
  279. miniLabel.Position = UDim2.new(-16.5526314, 0, 0.5, 0)
  280. miniLabel.Size = UDim2.new(0, 25, 0, 25)
  281. miniLabel.Visible = false
  282. miniLabel.Font = Enum.Font.SourceSansLight
  283. miniLabel.Text = "—"
  284. miniLabel.TextColor3 = Color3.fromRGB(181, 181, 181)
  285. miniLabel.TextSize = 15.000
  286. miniLabel.TextWrapped = true
  287.  
  288. Minimize.Name = "Minimize"
  289. Minimize.Parent = miniBtn
  290. Minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  291. Minimize.BackgroundTransparency = 1.000
  292. Minimize.Size = UDim2.new(0, 19, 0, 19)
  293. Minimize.Font = Enum.Font.SourceSans
  294. Minimize.Text = ""
  295. Minimize.TextColor3 = Color3.fromRGB(0, 0, 0)
  296. Minimize.TextSize = 14.000
  297.  
  298. Hi.Name = "Hi"
  299. Hi.Parent = miniBtn
  300. Hi.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  301. Hi.BackgroundTransparency = 1.000
  302. Hi.Position = UDim2.new(-10.726819, 0, -0.00334408414, 0)
  303. Hi.Size = UDim2.new(0, 193, 0, 22)
  304. Hi.Visible = false
  305. Hi.Font = Enum.Font.SourceSans
  306. Hi.Text = "Credits to dangerxusIove for converting Sentinel SS."
  307. Hi.TextColor3 = Color3.fromRGB(255, 255, 255)
  308. Hi.TextScaled = true
  309. Hi.TextSize = 14.000
  310. Hi.TextStrokeTransparency = 0.000
  311. Hi.TextWrapped = true
  312.  
  313. sunglasseslogo.Name = "sunglasseslogo"
  314. sunglasseslogo.Parent = topbarFrame
  315. sunglasseslogo.AnchorPoint = Vector2.new(0, 0.5)
  316. sunglasseslogo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  317. sunglasseslogo.BackgroundTransparency = 1.000
  318. sunglasseslogo.BorderSizePixel = 0
  319. sunglasseslogo.Position = UDim2.new(0, 2, 0.431818187, 0)
  320. sunglasseslogo.Size = UDim2.new(0, 24, 0, 28)
  321. sunglasseslogo.Image = "http://www.roblox.com/asset/?id=5084359542"
  322. sunglasseslogo.ScaleType = Enum.ScaleType.Fit
  323.  
  324. TextLabel.Parent = sunglasseslogo
  325. TextLabel.BackgroundColor3 = Color3.fromRGB(154, 154, 154)
  326. TextLabel.BackgroundTransparency = 1.000
  327. TextLabel.BorderSizePixel = 0
  328. TextLabel.Position = UDim2.new(0.75, 0, 0.285714149, 0)
  329. TextLabel.Size = UDim2.new(0, 121, 0, 16)
  330. TextLabel.Font = Enum.Font.SourceSans
  331. TextLabel.Text = "Builder X FE | ID Player"
  332. TextLabel.TextColor3 = Color3.fromRGB(189, 189, 189)
  333. TextLabel.TextSize = 12.000
  334.  
  335. exitBtn.Name = "exitBtn"
  336. exitBtn.Parent = topbarFrame
  337. exitBtn.AnchorPoint = Vector2.new(0, 0.5)
  338. exitBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  339. exitBtn.BackgroundTransparency = 1.000
  340. exitBtn.BorderColor3 = Color3.fromRGB(27, 42, 53)
  341. exitBtn.BorderSizePixel = 0
  342. exitBtn.Position = UDim2.new(0.0340715498, 541, 0.5, 0)
  343. exitBtn.Size = UDim2.new(0, 19, 0, 19)
  344. exitBtn.Image = "http://www.roblox.com/asset/?id=4132450915"
  345. exitBtn.ImageColor3 = Color3.fromRGB(140, 30, 49)
  346. exitBtn.ImageTransparency = 1.000
  347.  
  348. exitLabel.Name = "exitLabel"
  349. exitLabel.Parent = exitBtn
  350. exitLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  351. exitLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  352. exitLabel.BackgroundTransparency = 1.000
  353. exitLabel.BorderSizePixel = 0
  354. exitLabel.Position = UDim2.new(-16.4473686, 0, 0.5, 0)
  355. exitLabel.Size = UDim2.new(0, 25, 0, 25)
  356. exitLabel.Visible = false
  357. exitLabel.Font = Enum.Font.SourceSansLight
  358. exitLabel.Text = "×"
  359. exitLabel.TextColor3 = Color3.fromRGB(181, 181, 181)
  360. exitLabel.TextSize = 35.000
  361. exitLabel.TextWrapped = true
  362.  
  363. Exit.Name = "Exit"
  364. Exit.Parent = exitBtn
  365. Exit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  366. Exit.BackgroundTransparency = 1.000
  367. Exit.Size = UDim2.new(0, 19, 0, 19)
  368. Exit.Font = Enum.Font.SourceSans
  369. Exit.Text = ""
  370. Exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  371. Exit.TextSize = 14.000
  372.  
  373. player.Name = "player"
  374. player.Parent = mainFrame
  375. player.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  376. player.BorderSizePixel = 0
  377. player.Position = UDim2.new(0.0606060624, 0, 0.351190478, 0)
  378. player.Size = UDim2.new(0, 232, 0, 38)
  379. player.Font = Enum.Font.SourceSans
  380. player.PlaceholderText = "ID HERE"
  381. player.Text = ""
  382. player.TextColor3 = Color3.fromRGB(255, 255, 255)
  383. player.TextSize = 14.000
  384.  
  385. under.Name = "under"
  386. under.Parent = player
  387. under.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
  388. under.BorderSizePixel = 0
  389. under.Position = UDim2.new(-0.068965517, 0, 1.94736838, 0)
  390. under.Size = UDim2.new(0, 264, 0, 34)
  391.  
  392. r6.Name = "r6"
  393. r6.Parent = under
  394. r6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  395. r6.BackgroundTransparency = 1.000
  396. r6.Position = UDim2.new(0.170454532, 0, 0.0513382182, 0)
  397. r6.Size = UDim2.new(0, 34, 0, 30)
  398. r6.Font = Enum.Font.SourceSans
  399. r6.Text = "R6"
  400. r6.TextColor3 = Color3.fromRGB(255, 255, 255)
  401. r6.TextSize = 14.000
  402.  
  403. sep.Name = "sep"
  404. sep.Parent = r6
  405. sep.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
  406. sep.BorderColor3 = Color3.fromRGB(153, 153, 153)
  407. sep.BorderSizePixel = 0
  408. sep.Position = UDim2.new(0, 0, 0.123142488, 0)
  409. sep.Size = UDim2.new(0, 1, 0, 23)
  410.  
  411. play.Name = "play"
  412. play.Parent = under
  413. play.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  414. play.BackgroundTransparency = 1.000
  415. play.Position = UDim2.new(0.0416666605, 0, 0.0513382182, 0)
  416. play.Size = UDim2.new(0, 34, 0, 30)
  417. play.Font = Enum.Font.SourceSans
  418. play.Text = "Play"
  419. play.TextColor3 = Color3.fromRGB(255, 255, 255)
  420. play.TextSize = 14.000
  421.  
  422. profile.Name = "profile"
  423. profile.Parent = under
  424. profile.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  425. profile.BackgroundTransparency = 1.000
  426. profile.Position = UDim2.new(0.859848499, 0, 0.0513382182, 0)
  427. profile.Size = UDim2.new(0, 34, 0, 30)
  428. profile.Font = Enum.Font.SourceSans
  429. profile.Text = "Info"
  430. profile.TextColor3 = Color3.fromRGB(255, 255, 255)
  431. profile.TextSize = 14.000
  432.  
  433. sep_2.Name = "sep"
  434. sep_2.Parent = player
  435. sep_2.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
  436. sep_2.Position = UDim2.new(-0.0603448264, 0, 1.94736838, 0)
  437. sep_2.Size = UDim2.new(0, 262, 0, 1)
  438.  
  439. Message.Name = "Message"
  440. Message.Parent = Shadow
  441. Message.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  442. Message.BackgroundTransparency = 1.000
  443. Message.Position = UDim2.new(0.336734682, 0, -0.00334448158, 0)
  444. Message.Size = UDim2.new(0, 200, 0, 28)
  445. Message.Visible = false
  446. Message.Font = Enum.Font.SourceSans
  447. Message.Text = "Are you sure?"
  448. Message.TextColor3 = Color3.fromRGB(143, 0, 0)
  449. Message.TextSize = 14.000
  450.  
  451. profile_2.Name = "profile"
  452. profile_2.Parent = animation
  453. profile_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  454. profile_2.BackgroundTransparency = 1.000
  455. profile_2.BorderSizePixel = 0
  456. profile_2.Position = UDim2.new(0.840363622, -294, 0.597051561, -149)
  457. profile_2.Size = UDim2.new(0, 267, 0, 170)
  458. profile_2.Visible = false
  459.  
  460. Shadow_3.Name = "Shadow"
  461. Shadow_3.Parent = profile_2
  462.  
  463. Frame_3.Parent = Shadow_3
  464. Frame_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  465. Frame_3.BorderSizePixel = 0
  466. Frame_3.Position = UDim2.new(0, -4, 0, -4)
  467. Frame_3.Size = UDim2.new(1, 8, 1, 8)
  468. Frame_3.Style = Enum.FrameStyle.DropShadow
  469.  
  470. Frame_4.Parent = Frame_3
  471. Frame_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  472. Frame_4.BackgroundTransparency = 1.000
  473. Frame_4.BorderColor3 = Color3.fromRGB(27, 42, 53)
  474. Frame_4.BorderSizePixel = 0
  475. Frame_4.Position = UDim2.new(0, -4, 0, -4)
  476. Frame_4.Size = UDim2.new(1, 8, 1, 8)
  477.  
  478. mainFrame_2.Name = "mainFrame"
  479. mainFrame_2.Parent = profile_2
  480. mainFrame_2.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  481. mainFrame_2.BackgroundTransparency = 1.000
  482. mainFrame_2.BorderSizePixel = 0
  483. mainFrame_2.ClipsDescendants = true
  484. mainFrame_2.Position = UDim2.new(-0.000796778651, 0, -0.00258674752, 0)
  485. mainFrame_2.Size = UDim2.new(0, 264, 0, 168)
  486. mainFrame_2.Image = "http://www.roblox.com/asset/?id=4530318781"
  487. mainFrame_2.ImageColor3 = Color3.fromRGB(32, 32, 32)
  488. mainFrame_2.ScaleType = Enum.ScaleType.Slice
  489. mainFrame_2.SliceCenter = Rect.new(20, 20, 480, 480)
  490.  
  491. topbarFrame_2.Name = "topbarFrame"
  492. topbarFrame_2.Parent = mainFrame_2
  493. topbarFrame_2.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  494. topbarFrame_2.BackgroundTransparency = 1.000
  495. topbarFrame_2.BorderSizePixel = 0
  496. topbarFrame_2.Size = UDim2.new(0, 587, 0, 33)
  497. topbarFrame_2.Image = "http://www.roblox.com/asset/?id=4530319192"
  498. topbarFrame_2.ImageColor3 = Color3.fromRGB(24, 24, 24)
  499. topbarFrame_2.ScaleType = Enum.ScaleType.Slice
  500. topbarFrame_2.SliceCenter = Rect.new(20, 20, 480, 480)
  501.  
  502. miniBtn_2.Name = "miniBtn"
  503. miniBtn_2.Parent = topbarFrame_2
  504. miniBtn_2.AnchorPoint = Vector2.new(0, 0.5)
  505. miniBtn_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  506. miniBtn_2.BackgroundTransparency = 1.000
  507. miniBtn_2.BorderColor3 = Color3.fromRGB(27, 42, 53)
  508. miniBtn_2.BorderSizePixel = 0
  509. miniBtn_2.Position = UDim2.new(0, 531, 0.5, 0)
  510. miniBtn_2.Size = UDim2.new(0, 19, 0, 19)
  511. miniBtn_2.Image = "http://www.roblox.com/asset/?id=4132450915"
  512. miniBtn_2.ImageColor3 = Color3.fromRGB(140, 30, 49)
  513. miniBtn_2.ImageTransparency = 1.000
  514.  
  515. miniLabel_2.Name = "miniLabel"
  516. miniLabel_2.Parent = miniBtn_2
  517. miniLabel_2.AnchorPoint = Vector2.new(0.5, 0.5)
  518. miniLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  519. miniLabel_2.BackgroundTransparency = 1.000
  520. miniLabel_2.BorderSizePixel = 0
  521. miniLabel_2.Position = UDim2.new(-16.5526314, 0, 0.5, 0)
  522. miniLabel_2.Size = UDim2.new(0, 25, 0, 25)
  523. miniLabel_2.Visible = false
  524. miniLabel_2.Font = Enum.Font.SourceSansLight
  525. miniLabel_2.Text = "—"
  526. miniLabel_2.TextColor3 = Color3.fromRGB(181, 181, 181)
  527. miniLabel_2.TextSize = 15.000
  528. miniLabel_2.TextWrapped = true
  529.  
  530. Minimize_2.Name = "Minimize"
  531. Minimize_2.Parent = miniBtn_2
  532. Minimize_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  533. Minimize_2.BackgroundTransparency = 1.000
  534. Minimize_2.Size = UDim2.new(0, 19, 0, 19)
  535. Minimize_2.Font = Enum.Font.SourceSans
  536. Minimize_2.Text = ""
  537. Minimize_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  538. Minimize_2.TextSize = 14.000
  539.  
  540. Hi_2.Name = "Hi"
  541. Hi_2.Parent = miniBtn_2
  542. Hi_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  543. Hi_2.BackgroundTransparency = 1.000
  544. Hi_2.Position = UDim2.new(-10.726819, 0, -0.00334408414, 0)
  545. Hi_2.Size = UDim2.new(0, 193, 0, 22)
  546. Hi_2.Visible = false
  547. Hi_2.Font = Enum.Font.SourceSans
  548. Hi_2.Text = "Credits to dangerxusIove for converting Sentinel SS."
  549. Hi_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  550. Hi_2.TextScaled = true
  551. Hi_2.TextSize = 14.000
  552. Hi_2.TextStrokeTransparency = 0.000
  553. Hi_2.TextWrapped = true
  554.  
  555. sunglasseslogo_2.Name = "sunglasseslogo"
  556. sunglasseslogo_2.Parent = topbarFrame_2
  557. sunglasseslogo_2.AnchorPoint = Vector2.new(0, 0.5)
  558. sunglasseslogo_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  559. sunglasseslogo_2.BackgroundTransparency = 1.000
  560. sunglasseslogo_2.BorderSizePixel = 0
  561. sunglasseslogo_2.Position = UDim2.new(0, 2, 0.431818187, 0)
  562. sunglasseslogo_2.Size = UDim2.new(0, 24, 0, 28)
  563. sunglasseslogo_2.Image = "http://www.roblox.com/asset/?id=5084359542"
  564. sunglasseslogo_2.ScaleType = Enum.ScaleType.Fit
  565.  
  566. TextLabel_2.Parent = sunglasseslogo_2
  567. TextLabel_2.BackgroundColor3 = Color3.fromRGB(154, 154, 154)
  568. TextLabel_2.BackgroundTransparency = 1.000
  569. TextLabel_2.BorderSizePixel = 0
  570. TextLabel_2.Position = UDim2.new(-0.708333373, 0, 0.249999866, 0)
  571. TextLabel_2.Size = UDim2.new(0, 121, 0, 16)
  572. TextLabel_2.Font = Enum.Font.SourceSans
  573. TextLabel_2.Text = "Profile"
  574. TextLabel_2.TextColor3 = Color3.fromRGB(189, 189, 189)
  575. TextLabel_2.TextSize = 12.000
  576.  
  577. exitBtn_2.Name = "exitBtn"
  578. exitBtn_2.Parent = topbarFrame_2
  579. exitBtn_2.AnchorPoint = Vector2.new(0, 0.5)
  580. exitBtn_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  581. exitBtn_2.BackgroundTransparency = 1.000
  582. exitBtn_2.BorderColor3 = Color3.fromRGB(27, 42, 53)
  583. exitBtn_2.BorderSizePixel = 0
  584. exitBtn_2.Position = UDim2.new(0.0340715498, 541, 0.5, 0)
  585. exitBtn_2.Size = UDim2.new(0, 19, 0, 19)
  586. exitBtn_2.Image = "http://www.roblox.com/asset/?id=4132450915"
  587. exitBtn_2.ImageColor3 = Color3.fromRGB(140, 30, 49)
  588. exitBtn_2.ImageTransparency = 1.000
  589.  
  590. exitLabel_2.Name = "exitLabel"
  591. exitLabel_2.Parent = exitBtn_2
  592. exitLabel_2.AnchorPoint = Vector2.new(0.5, 0.5)
  593. exitLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  594. exitLabel_2.BackgroundTransparency = 1.000
  595. exitLabel_2.BorderSizePixel = 0
  596. exitLabel_2.Position = UDim2.new(-16.4473686, 0, 0.5, 0)
  597. exitLabel_2.Size = UDim2.new(0, 25, 0, 25)
  598. exitLabel_2.Visible = false
  599. exitLabel_2.Font = Enum.Font.SourceSansLight
  600. exitLabel_2.Text = "×"
  601. exitLabel_2.TextColor3 = Color3.fromRGB(181, 181, 181)
  602. exitLabel_2.TextSize = 35.000
  603. exitLabel_2.TextWrapped = true
  604.  
  605. Exit_2.Name = "Exit"
  606. Exit_2.Parent = exitBtn_2
  607. Exit_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  608. Exit_2.BackgroundTransparency = 1.000
  609. Exit_2.Size = UDim2.new(0, 19, 0, 19)
  610. Exit_2.Font = Enum.Font.SourceSans
  611. Exit_2.Text = ""
  612. Exit_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  613. Exit_2.TextSize = 14.000
  614.  
  615. pfp.Name = "pfp"
  616. pfp.Parent = mainFrame_2
  617. pfp.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  618. pfp.BackgroundTransparency = 1.000
  619. pfp.Position = UDim2.new(0.314393967, 0, 0.178571418, 0)
  620. pfp.Size = UDim2.new(0, 98, 0, 100)
  621. pfp.Image = "http://www.roblox.com/asset/?id=5084359542"
  622.  
  623. under_2.Name = "under"
  624. under_2.Parent = pfp
  625. under_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  626. under_2.BackgroundTransparency = 1.000
  627. under_2.BorderSizePixel = 0
  628. under_2.Position = UDim2.new(-0.806122422, 0, 1.04999971, 0)
  629. under_2.Size = UDim2.new(0, 264, 0, 33)
  630. under_2.Image = "rbxassetid://3570695787"
  631. under_2.ImageColor3 = Color3.fromRGB(29, 29, 29)
  632. under_2.ScaleType = Enum.ScaleType.Slice
  633. under_2.SliceCenter = Rect.new(100, 100, 100, 100)
  634. under_2.SliceScale = 0.050
  635.  
  636. top.Name = "top"
  637. top.Parent = under_2
  638. top.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
  639. top.BorderSizePixel = 0
  640. top.Position = UDim2.new(-0.0151515156, 0, 0.134539977, 0)
  641. top.Size = UDim2.new(0, 268, 0, 4)
  642.  
  643. uaid.Name = "uaid"
  644. uaid.Parent = under_2
  645. uaid.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  646. uaid.BackgroundTransparency = 1.000
  647. uaid.Position = UDim2.new(0, 0, 0.0436308905, 0)
  648. uaid.Size = UDim2.new(0, 49, 0, 28)
  649. uaid.Font = Enum.Font.SourceSans
  650. uaid.Text = "UAID "
  651. uaid.TextColor3 = Color3.fromRGB(255, 255, 255)
  652. uaid.TextSize = 14.000
  653.  
  654. sep_3.Name = "sep"
  655. sep_3.Parent = uaid
  656. sep_3.BackgroundColor3 = Color3.fromRGB(118, 118, 118)
  657. sep_3.BorderSizePixel = 0
  658. sep_3.Position = UDim2.new(0.817503631, 0, 0.25, 0)
  659. sep_3.Size = UDim2.new(0, 1, 0, 15)
  660.  
  661. _1.Name = "1"
  662. _1.Parent = sep_3
  663. _1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  664. _1.BackgroundTransparency = 1.000
  665. _1.Position = UDim2.new(-0.87121582, 0, -0.453338623, 0)
  666. _1.Size = UDim2.new(0, 39, 0, 28)
  667. _1.Font = Enum.Font.SourceSans
  668. _1.Text = "1"
  669. _1.TextColor3 = Color3.fromRGB(255, 255, 255)
  670. _1.TextSize = 14.000
  671.  
  672. Message_2.Name = "Message"
  673. Message_2.Parent = profile_2
  674. Message_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  675. Message_2.BackgroundTransparency = 1.000
  676. Message_2.Position = UDim2.new(0.336734682, 0, -0.00334448158, 0)
  677. Message_2.Size = UDim2.new(0, 200, 0, 28)
  678. Message_2.Visible = false
  679. Message_2.Font = Enum.Font.SourceSans
  680. Message_2.Text = "Are you sure?"
  681. Message_2.TextColor3 = Color3.fromRGB(143, 0, 0)
  682. Message_2.TextSize = 14.000
  683.  
  684. -- Scripts:
  685.  
  686. local function XHBPHPO_fake_script() -- miniBtn.LocalScript
  687. local script = Instance.new('LocalScript', miniBtn)
  688.  
  689. --[[local button = script.Parent
  690. local main = button.Parent.Parent.Parent.Parent.Shadow
  691. local minimizebtn = button.Minimize
  692. local openbtn = main.Parent.Open
  693.  
  694. function entered()
  695. button.BackgroundColor3 = Color3.fromRGB(140, 30, 49)
  696. button.ImageTransparency = 0
  697. script.Parent.Hi.Visible = true
  698. end
  699. function left()
  700. button.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  701. button.ImageTransparency = 1
  702. script.Parent.Hi.Visible = false
  703. end
  704.  
  705. function clicked()
  706. openbtn.Visible = true
  707. openbtn.open.Active = true
  708. main.Visible = false
  709. end
  710.  
  711. minimizebtn.MouseButton1Click:Connect(clicked)
  712. button.MouseEnter:Connect(entered)
  713. button.MouseLeave:Connect(left)--]]
  714. end
  715. coroutine.wrap(XHBPHPO_fake_script)()
  716. local function IUPFXC_fake_script() -- exitBtn.LocalScript
  717. local script = Instance.new('LocalScript', exitBtn)
  718.  
  719. --[[local button = script.Parent
  720. local main = button.Parent.Parent.Parent.Parent
  721. local exitbtn = button.Exit
  722. local message = button.Parent.Parent.Parent.Message
  723. local confirm;
  724.  
  725.  
  726. function entered()
  727. button.BackgroundColor3 = Color3.fromRGB(140, 30, 49)
  728. button.ImageTransparency = 0
  729. end
  730. function left()
  731. button.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  732. button.ImageTransparency = 1
  733. end
  734.  
  735. function clicked()
  736. if not confirm then
  737. message.Visible = true
  738. wait(1)
  739. message.Visible = false
  740. confirm = true
  741. return
  742. end
  743. main.Enabled = false
  744. main:Destroy()
  745. end
  746.  
  747. exitbtn.MouseButton1Click:Connect(clicked)
  748. button.MouseEnter:Connect(entered)
  749. button.MouseLeave:Connect(left)--]]
  750. end
  751. coroutine.wrap(IUPFXC_fake_script)()
  752. local function YLELJ_fake_script() -- r6.LocalScript
  753. local script = Instance.new('LocalScript', r6)
  754.  
  755. script.Parent.MouseButton1Click:Connect(function()
  756. spawn(function()
  757. while wait() do
  758. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 1/0)
  759. sethiddenproperty(game.Players.LocalPlayer, "MaximumSimulationRadius", 1/0)
  760. end
  761. end)
  762.  
  763. wait(.5)
  764.  
  765. HumanDied = false
  766. local CountSCIFIMOVIELOL = 1
  767. function SCIFIMOVIELOL(Part0,Part1,Position,Angle)
  768. local AlignPos = Instance.new('AlignPosition', Part1); AlignPos.Name = "AliP_"..CountSCIFIMOVIELOL
  769. AlignPos.ApplyAtCenterOfMass = true;
  770. AlignPos.MaxForce = 5772000--67752;
  771. AlignPos.MaxVelocity = math.huge/9e110;
  772. AlignPos.ReactionForceEnabled = false;
  773. AlignPos.Responsiveness = 200;
  774. AlignPos.RigidityEnabled = false;
  775. local AlignOri = Instance.new('AlignOrientation', Part1); AlignOri.Name = "AliO_"..CountSCIFIMOVIELOL
  776. AlignOri.MaxAngularVelocity = math.huge/9e110;
  777. AlignOri.MaxTorque = 5772000
  778. AlignOri.PrimaryAxisOnly = false;
  779. AlignOri.ReactionTorqueEnabled = false;
  780. AlignOri.Responsiveness = 200;
  781. AlignOri.RigidityEnabled = false;
  782. local AttachmentA=Instance.new('Attachment',Part1); AttachmentA.Name = "Ath_"..CountSCIFIMOVIELOL
  783. local AttachmentB=Instance.new('Attachment',Part0); AttachmentB.Name = "Ath_"..CountSCIFIMOVIELOL
  784. AttachmentA.Orientation = Angle or Vector3.new(0,0,0)
  785. AttachmentA.Position = Position or Vector3.new(0,0,0)
  786. AlignPos.Attachment1 = AttachmentA;
  787. AlignPos.Attachment0 = AttachmentB;
  788. AlignOri.Attachment1 = AttachmentA;
  789. AlignOri.Attachment0 = AttachmentB;
  790. CountSCIFIMOVIELOL = CountSCIFIMOVIELOL + 1
  791. return {AlignPos,AlignOri,AttachmentA,AttachmentB}
  792. end
  793.  
  794. if _G.netted ~= true then
  795. _G.netted = true
  796. coroutine.wrap(function()
  797. settings().Physics.PhysicsEnvironmentalThrottle = Enum.EnviromentalPhysicsThrottle.Disabled
  798. settings().Physics.AllowSleep = false
  799. game:GetService("RunService").RenderStepped:Connect(function()
  800. game:FindFirstChildOfClass("Players").LocalPlayer.MaximumSimulationRadius=math.pow(math.huge,math.huge)
  801. sethiddenproperty(game:FindFirstChildOfClass("Players").LocalPlayer,"SimulationRadius",math.huge*math.huge)
  802. end)
  803. end)()
  804. end
  805.  
  806. game:FindFirstChildOfClass("Players").LocalPlayer["Character"].Archivable = true
  807. local hatnameclone = {}
  808. for _,v in next, game:FindFirstChildOfClass("Players").LocalPlayer["Character"]:GetChildren() do
  809. if v:IsA("Accessory") then
  810. if hatnameclone[v.Name] then
  811. if hatnameclone[v.Name] == "s" then
  812. hatnameclone[v.Name] = {}
  813. end
  814. table.insert(hatnameclone[v.Name],v)
  815. else
  816. hatnameclone[v.Name] = "s"
  817. end
  818. end
  819. end
  820. for _,v in pairs(hatnameclone) do
  821. if type(v) == "table" then
  822. local num = 1
  823. for _,w in pairs(v) do
  824. w.Name = w.Name..num
  825. num = num + 1
  826. end
  827. end
  828. end
  829. hatnameclone = nil
  830.  
  831. local DeadChar = game:FindFirstChildOfClass("Players").LocalPlayer.Character
  832.  
  833. local fldr = Instance.new("Folder",game:FindFirstChildOfClass("Players").LocalPlayer["Character"])
  834. fldr.Name = "DMYF"
  835. local CloneChar = DeadChar:Clone()
  836. local ANIMATIONHERE
  837. if CloneChar:FindFirstChild("Animate") then
  838. ANIMATIONHERE = CloneChar:FindFirstChild("Animate"):Clone()
  839. CloneChar:FindFirstChild("Animate"):Destroy()
  840. end
  841. if CloneChar:FindFirstChildOfClass("Folder") then CloneChar:FindFirstChildOfClass("Folder"):Destroy() end
  842. if CloneChar.Torso:FindFirstChild("Neck") then
  843. local Clonessss = CloneChar.Torso:FindFirstChild("Neck"):Clone()
  844. Clonessss.Part0 = nil
  845. Clonessss.Part1 = DeadChar.Head
  846. Clonessss.Parent = DeadChar.Torso
  847. end
  848. CloneChar.Parent = fldr
  849. CloneChar.HumanoidRootPart.CFrame = DeadChar.HumanoidRootPart.CFrame
  850. CloneChar.Humanoid.BreakJointsOnDeath = false
  851. CloneChar.Name = "non"
  852. CloneChar.Humanoid.DisplayDistanceType = "None"
  853.  
  854. for _,v in next, DeadChar:GetChildren() do
  855. if v:IsA("Accessory") then
  856. local topacc = false
  857. if v.Handle:FindFirstChildOfClass("Weld") then v.Handle:FindFirstChildOfClass("Weld"):Destroy() end
  858. v.Handle.Massless = true
  859. v.Handle.CanCollide = false
  860. if v.Handle:FindFirstChildOfClass("Attachment") then
  861. local ath__ = v.Handle:FindFirstChildOfClass("Attachment")
  862. if ath__.Name == "HatAttachment" or ath__.Name == "HairAttachment" or ath__.Name == "FaceFrontAttachment" or ath__.Name == "FaceCenterAttachment" then
  863. topacc = ath__.Name
  864. end
  865. end
  866. local bv = Instance.new("BodyVelocity",v.Handle)
  867. bv.Velocity = Vector3.new(0,0,0)
  868. coroutine.wrap(function()
  869. if topacc then
  870. local allthings = SCIFIMOVIELOL(v.Handle,DeadChar.Torso,Vector3.new(0,1.5,0)+ (DeadChar.Head[topacc].Position + (v.Handle[topacc].Position*-1)),Vector3.new(0,0,0))
  871. local normaltop = allthings[1].Attachment1
  872. local alipos = allthings[1]
  873. local alirot = allthings[2]
  874. local p0 = v.Handle
  875. local p1 = DeadChar.Head
  876. alipos.Parent = CloneChar:FindFirstChild(v.Name).Handle
  877. alirot.Parent = CloneChar:FindFirstChild(v.Name).Handle
  878. while true do
  879. game:GetService("RunService").RenderStepped:wait()
  880. if HumanDied then break end
  881. coroutine.wrap(function()
  882. if alipos.Attachment1 == normaltop then
  883. p0.CFrame = p0.CFrame:lerp((((DeadChar.Torso.CFrame * CFrame.new(0,1.5,0)) * p1[topacc].CFrame) * p0[topacc].CFrame:inverse()),1)
  884. else
  885. v.Handle.CFrame = v.Handle.CFrame:lerp(alipos.Attachment1.Parent.CFrame * CFrame.new(alipos.Attachment1.Position) * CFrame.Angles(math.rad(alipos.Attachment1.Rotation.X),math.rad(alipos.Attachment1.Rotation.Y),math.rad(alipos.Attachment1.Rotation.Z)),1)
  886. end
  887. end)()
  888. end
  889. else
  890. SCIFIMOVIELOL(v.Handle,CloneChar[v.Name].Handle,Vector3.new(0,0,0),Vector3.new(0,0,0))
  891. end
  892. end)()
  893. end
  894. end
  895.  
  896. local a = DeadChar.Torso
  897. local b = DeadChar.HumanoidRootPart
  898. local c = DeadChar.Humanoid
  899. a.Parent = game:FindFirstChildOfClass("Workspace")
  900. c.Parent = game:FindFirstChildOfClass("Workspace")
  901. local told = a:Clone()
  902. local told1 = c:Clone()
  903. b["RootJoint"].Part0 = told
  904. b["RootJoint"].Part1 = DeadChar.Head
  905. a.Name = "torso"
  906. a.Neck:Destroy()
  907. c.Name = "Mizt Hub Best"
  908. told.Parent = DeadChar
  909. told1.Parent = DeadChar
  910. DeadChar.PrimaryPart = told
  911. told1.Health = 0
  912. b:Destroy()
  913. a.Parent = DeadChar
  914. c.Parent = DeadChar
  915. told:Destroy()
  916. told1:Destroy()
  917. a.Name = "Torso"
  918.  
  919. if CloneChar.Head:FindFirstChildOfClass("Decal") then CloneChar.Head:FindFirstChildOfClass("Decal").Transparency = 1 end
  920. if DeadChar:FindFirstChild("Animate") then DeadChar:FindFirstChild("Animate"):Destroy() end
  921.  
  922. local Collider
  923. function UnCollide()
  924. if HumanDied then Collider:Disconnect(); return end
  925. --[[for _,Parts in next, CloneChar:GetChildren() do
  926. if Parts:IsA("BasePart") then
  927. Parts.CanCollide = false
  928. end
  929. end]]
  930. for _,Parts in next, DeadChar:GetChildren() do
  931. if Parts:IsA("BasePart") then
  932. Parts.CanCollide = false
  933. end
  934. end
  935. end
  936. Collider = game:GetService("RunService").Stepped:Connect(UnCollide)
  937.  
  938. local resetBindable = Instance.new("BindableEvent")
  939. resetBindable.Event:connect(function()
  940. game:GetService("StarterGui"):SetCore("ResetButtonCallback", true)
  941. resetBindable:Destroy()
  942. HumanDied = true
  943. pcall(function()
  944. game:FindFirstChildOfClass("Players").LocalPlayer.Character = DeadChar
  945. DeadChar.Head:Destroy()
  946. DeadChar:FindFirstChildOfClass("Humanoid"):Destroy()
  947. game:FindFirstChildOfClass("Players").LocalPlayer.Character = CloneChar
  948. if DeadChar:FindFirstChildOfClass("Folder") then DeadChar:FindFirstChildOfClass("Folder"):Destroy() end
  949. end)
  950. end)
  951. game:GetService("StarterGui"):SetCore("ResetButtonCallback", resetBindable)
  952.  
  953. coroutine.wrap(function()
  954. while true do
  955. game:GetService("RunService").RenderStepped:wait()
  956. if not CloneChar or not CloneChar:FindFirstChild("Head") or not CloneChar:FindFirstChildOfClass("Humanoid") or CloneChar:FindFirstChildOfClass("Humanoid").Health <= 0 and not DeadChar or not DeadChar:FindFirstChild("Head") or not DeadChar:FindFirstChildOfClass("Humanoid") or DeadChar:FindFirstChildOfClass("Humanoid").Health <= 0 then
  957. HumanDied = true
  958. pcall(function()
  959. game:FindFirstChildOfClass("Players").LocalPlayer.Character = DeadChar
  960. DeadChar.Head:Destroy()
  961. DeadChar:FindFirstChildOfClass("Humanoid"):Destroy()
  962. game:FindFirstChildOfClass("Players").LocalPlayer.Character = CloneChar
  963. if DeadChar:FindFirstChildOfClass("Folder") then DeadChar:FindFirstChildOfClass("Folder"):Destroy() end
  964. end)
  965. if resetBindable then
  966. game:GetService("StarterGui"):SetCore("ResetButtonCallback", true)
  967. resetBindable:Destroy()
  968. end
  969. break
  970. end
  971. end
  972. end)()
  973.  
  974.  
  975. SCIFIMOVIELOL(DeadChar["Head"],CloneChar["Head"])
  976. SCIFIMOVIELOL(DeadChar["Torso"],CloneChar["Torso"])
  977. SCIFIMOVIELOL(DeadChar["Left Arm"],CloneChar["Left Arm"])
  978. SCIFIMOVIELOL(DeadChar["Right Arm"],CloneChar["Right Arm"])
  979. SCIFIMOVIELOL(DeadChar["Left Leg"],CloneChar["Left Leg"])
  980. SCIFIMOVIELOL(DeadChar["Right Leg"],CloneChar["Right Leg"])
  981.  
  982. for _,v in pairs(DeadChar:GetChildren()) do
  983. if v:IsA("BasePart") and v.Name ~= "Head" then
  984. --[[local bv = Instance.new("BodyVelocity",v)
  985. bv.Velocity = Vector3.new(0,0,0)
  986. coroutine.wrap(function()
  987. while true do
  988. game:GetService("RunService").RenderStepped:wait()
  989. if HumanDied then break end
  990. v.CFrame = CloneChar[v.Name].CFrame
  991. end
  992. end)()]]
  993. elseif v:IsA("BasePart") and v.Name == "Head" then
  994. local bv = Instance.new("BodyVelocity",v)
  995. bv.Velocity = Vector3.new(0,0,0)
  996. coroutine.wrap(function()
  997. while true do
  998. game:GetService("RunService").RenderStepped:wait()
  999. if HumanDied then break end
  1000. v.CFrame = DeadChar.Torso.CFrame * CFrame.new(0,1.5,0)
  1001. end
  1002. end)()
  1003. end
  1004. end
  1005.  
  1006. for _,BodyParts in next, CloneChar:GetDescendants() do
  1007. if BodyParts:IsA("BasePart") or BodyParts:IsA("Part") then
  1008. BodyParts.Transparency = 1 end end
  1009. game:GetService("RunService").RenderStepped:wait()
  1010. game:FindFirstChildOfClass("Players").LocalPlayer.Character = CloneChar
  1011. game:FindFirstChildOfClass("Workspace"):FindFirstChildOfClass("Camera").CameraSubject = CloneChar.Humanoid
  1012.  
  1013. for _,v in next, DeadChar:GetChildren() do
  1014. if v:IsA("Accessory") then
  1015. if v.Handle:FindFirstChildOfClass("Weld") then v.Handle:FindFirstChildOfClass("Weld"):Destroy() end
  1016. end
  1017. end
  1018.  
  1019. if ANIMATIONHERE then ANIMATIONHERE.Parent = CloneChar end
  1020. end)
  1021. end
  1022. coroutine.wrap(YLELJ_fake_script)()
  1023. local function VUDGGV_fake_script() -- play.LocalScript
  1024. local script = Instance.new('LocalScript', play)
  1025.  
  1026. script.Parent.MouseButton1Click:Connect(function()
  1027. animid="rbxassetid://"..script.Parent.Parent.Parent.Text
  1028. plr=game.Players.LocalPlayer
  1029. bruhmomentrighthahahahhahah=plr.Character
  1030. cf=bruhmomentrighthahahahhahah.HumanoidRootPart.CFrame
  1031. t=bruhmomentrighthahahahhahah.Torso
  1032. rs=t["Right Shoulder"]
  1033. ls=t["Left Shoulder"]
  1034. rh=t["Right Hip"]
  1035. lh=t["Left Hip"]
  1036. n=t["Neck"]
  1037. rj=bruhmomentrighthahahahhahah.HumanoidRootPart["RootJoint"]
  1038. rsc0=rs.C0
  1039. lsc0=ls.C0
  1040. rhc0=rh.C0
  1041. lhc0=lh.C0
  1042. rjc0=rj.C0
  1043. nc0=n.C0
  1044. gc0=CFrame.new()
  1045. orsc0=rs.C0
  1046. olsc0=ls.C0
  1047. orhc0=rh.C0
  1048. olhc0=lh.C0
  1049. orjc0=rj.C0
  1050. onc0=n.C0
  1051. count2 = 100
  1052. maxcount2=100
  1053. game["Run Service"].Heartbeat:Connect(function()
  1054. count2 = count2+1
  1055. if count2<=maxcount2 then
  1056. rs.Transform=rs.Transform:Lerp(rsc0,count2/maxcount2)
  1057. ls.Transform=ls.Transform:Lerp(lsc0,count2/maxcount2)
  1058. rh.Transform=rh.Transform:Lerp(rhc0,count2/maxcount2)
  1059. lh.Transform=lh.Transform:Lerp(lhc0,count2/maxcount2)
  1060. n.Transform=n.Transform:Lerp(nc0,count2/maxcount2)
  1061. rj.Transform=rj.Transform:Lerp(rjc0,count2/maxcount2)
  1062. end
  1063. end)
  1064. animid=game:GetObjects(animid)[1]
  1065. function wait2(tim)
  1066. if tim<0.1 then
  1067. game.RunService.Heartbeat:Wait()
  1068. else
  1069. for i=1,tim*40 do
  1070. game.RunService.Heartbeat:Wait()
  1071. end
  1072. end
  1073. end
  1074. anim={}
  1075. function kftotbl(kf)
  1076. tbl3 = {}
  1077. for i,v in pairs(kf:GetDescendants()) do
  1078. if v:IsA("Pose") then
  1079. tbl3[string.sub(v.Name,1,1)..string.sub(v.Name,#v.Name,#v.Name)] = v.CFrame
  1080. end
  1081. end
  1082. return(tbl3)
  1083. end
  1084. for i,v in pairs(animid:GetChildren()) do
  1085. if v:IsA("Keyframe") then
  1086. anim[v.Time]=kftotbl(v)
  1087. end
  1088. end
  1089.  
  1090. function getnext(tbl,number)
  1091. c=100
  1092. rtrnv=0
  1093. for i,v in pairs(tbl) do
  1094. if i>number and i-number<c then
  1095. c=i-number
  1096. rtrnv=i
  1097. end
  1098. end
  1099. return(rtrnv)
  1100. end
  1101. count = 0
  1102. char=game.Players.LocalPlayer.Character
  1103. hhhh=game.Players.LocalPlayer.Character.Humanoid.Animator
  1104. hhhh.Parent = nil
  1105. for _,v in pairs(char.Humanoid:GetPlayingAnimationTracks()) do
  1106. v:Stop()
  1107. end
  1108. while wait() do
  1109. for i,oasjdadlasdkadkldjkl in pairs(anim) do
  1110. asdf=getnext(anim,count)
  1111. v=anim[asdf]
  1112. if v["Lg"] then
  1113. lhc0 = v["Lg"]
  1114. end
  1115. if v["Rg"] then
  1116. rhc0 = v["Rg"]
  1117. end
  1118. if v["Lm"] then
  1119. lsc0 = v["Lm"]
  1120. end
  1121. if v["Rm"] then
  1122. rsc0 = v["Rm"]
  1123. end
  1124. if v["To"] then
  1125. rjc0 = v["To"]
  1126. end
  1127. if v["Hd"] then
  1128. nc0 = v["Hd"]
  1129. end
  1130. count2=0
  1131. print(asdf)
  1132. maxcount2=asdf-count
  1133. count=asdf
  1134. wait2(asdf-count)
  1135. count2=maxcount2
  1136. if v["Lg"] then
  1137. char.Torso["Left Hip"].Transform = v["Lg"]
  1138. end
  1139. if v["Rg"] then
  1140. char.Torso["Right Hip"].Transform = v["Rg"]
  1141. end
  1142. if v["Lm"] then
  1143. char.Torso["Left Shoulder"].Transform = v["Lm"]
  1144. end
  1145. if v["Rm"] then
  1146. char.Torso["Right Shoulder"].Transform = v["Rm"]
  1147. end
  1148. if v["To"] then
  1149. char.HumanoidRootPart["RootJoint"].Transform = v["To"]
  1150. end
  1151. if v["Hd"] then
  1152. char.Torso["Neck"].Transform = v["Hd"]
  1153. end
  1154. end
  1155. end
  1156. end)
  1157. end
  1158. coroutine.wrap(VUDGGV_fake_script)()
  1159. local function QUAWSM_fake_script() -- profile.LocalScript
  1160. local script = Instance.new('LocalScript', profile)
  1161.  
  1162. script.Parent.MouseButton1Click:Connect(function()
  1163. if script.Parent.Parent.Parent.Parent.Parent.Parent.profile.Visible == true then script.Parent.Parent.Parent.Parent.Parent.Parent.profile.Visible = false else script.Parent.Parent.Parent.Parent.Parent.Parent.profile.Visible = true end
  1164. end)
  1165. end
  1166. coroutine.wrap(QUAWSM_fake_script)()
  1167. local function VKQFRDV_fake_script() -- Shadow.Drag
  1168. local script = Instance.new('LocalScript', Shadow)
  1169.  
  1170. local UIS = game:GetService("UserInputService")
  1171. function dragify(Frame)
  1172. dragToggle = nil
  1173. dragInput = nil
  1174. dragStart = nil
  1175. function updateInput(input)
  1176. local Delta = input.Position - dragStart
  1177. local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  1178. --Frame.Position = Position
  1179. game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.09), {Position = Position}):Play()
  1180. end
  1181. Frame.InputBegan:Connect(function(input)
  1182. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  1183. dragToggle = true
  1184. dragStart = input.Position
  1185. startPos = Frame.Position
  1186. input.Changed:Connect(function()
  1187. if input.UserInputState == Enum.UserInputState.End then
  1188. dragToggle = false
  1189. end
  1190. end)
  1191. end
  1192. end)
  1193. Frame.InputChanged:Connect(function(input)
  1194. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1195. dragInput = input
  1196. end
  1197. end)
  1198. game:GetService("UserInputService").InputChanged:Connect(function(input)
  1199. if input == dragInput and dragToggle then
  1200. updateInput(input)
  1201. end
  1202. end)
  1203. end
  1204.  
  1205. dragify(script.Parent)
  1206. end
  1207. coroutine.wrap(VKQFRDV_fake_script)()
  1208. local function RVZEA_fake_script() -- miniBtn_2.LocalScript
  1209. local script = Instance.new('LocalScript', miniBtn_2)
  1210.  
  1211. local button = script.Parent
  1212. local main = button.Parent.Parent.Parent.Parent.Shadow
  1213. local minimizebtn = button.Minimize
  1214. local openbtn = main.Parent.Open
  1215.  
  1216. function entered()
  1217. button.BackgroundColor3 = Color3.fromRGB(140, 30, 49)
  1218. button.ImageTransparency = 0
  1219. script.Parent.Hi.Visible = true
  1220. end
  1221. function left()
  1222. button.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  1223. button.ImageTransparency = 1
  1224. script.Parent.Hi.Visible = false
  1225. end
  1226.  
  1227. function clicked()
  1228. openbtn.Visible = true
  1229. openbtn.open.Active = true
  1230. main.Visible = false
  1231. end
  1232.  
  1233. minimizebtn.MouseButton1Click:Connect(clicked)
  1234. button.MouseEnter:Connect(entered)
  1235. button.MouseLeave:Connect(left)
  1236. end
  1237. coroutine.wrap(RVZEA_fake_script)()
  1238. local function JVWSQ_fake_script() -- exitBtn_2.LocalScript
  1239. local script = Instance.new('LocalScript', exitBtn_2)
  1240.  
  1241. local button = script.Parent
  1242. local main = button.Parent.Parent.Parent.Parent
  1243. local exitbtn = button.Exit
  1244. local message = button.Parent.Parent.Parent.Message
  1245. local confirm;
  1246.  
  1247.  
  1248. function entered()
  1249. button.BackgroundColor3 = Color3.fromRGB(140, 30, 49)
  1250. button.ImageTransparency = 0
  1251. end
  1252. function left()
  1253. button.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  1254. button.ImageTransparency = 1
  1255. end
  1256.  
  1257. function clicked()
  1258. if not confirm then
  1259. message.Visible = true
  1260. wait(1)
  1261. message.Visible = false
  1262. confirm = true
  1263. return
  1264. end
  1265. main.Enabled = false
  1266. main:Destroy()
  1267. end
  1268.  
  1269. exitbtn.MouseButton1Click:Connect(clicked)
  1270. button.MouseEnter:Connect(entered)
  1271. button.MouseLeave:Connect(left)
  1272. end
  1273. coroutine.wrap(JVWSQ_fake_script)()
  1274. local function FQQC_fake_script() -- _1.LocalScript
  1275. local script = Instance.new('LocalScript', _1)
  1276.  
  1277. script.Parent.Text = math.random(1,30)
  1278. end
  1279. coroutine.wrap(FQQC_fake_script)()
  1280. local function GHALIFO_fake_script() -- profile_2.Drag
  1281. local script = Instance.new('LocalScript', profile_2)
  1282.  
  1283. local UIS = game:GetService("UserInputService")
  1284. function dragify(Frame)
  1285. dragToggle = nil
  1286. dragInput = nil
  1287. dragStart = nil
  1288. function updateInput(input)
  1289. local Delta = input.Position - dragStart
  1290. local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  1291. --Frame.Position = Position
  1292. game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.09), {Position = Position}):Play()
  1293. end
  1294. Frame.InputBegan:Connect(function(input)
  1295. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  1296. dragToggle = true
  1297. dragStart = input.Position
  1298. startPos = Frame.Position
  1299. input.Changed:Connect(function()
  1300. if input.UserInputState == Enum.UserInputState.End then
  1301. dragToggle = false
  1302. end
  1303. end)
  1304. end
  1305. end)
  1306. Frame.InputChanged:Connect(function(input)
  1307. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1308. dragInput = input
  1309. end
  1310. end)
  1311. game:GetService("UserInputService").InputChanged:Connect(function(input)
  1312. if input == dragInput and dragToggle then
  1313. updateInput(input)
  1314. end
  1315. end)
  1316. end
  1317.  
  1318. dragify(script.Parent)
  1319. end
  1320. coroutine.wrap(GHALIFO_fake_script)()
  1321.  
Add Comment
Please, Sign In to add comment