Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.02 KB | None | 0 0
  1. function copyWorkspace()
  2. wait(3)
  3. clipboard = ''
  4. local objects = {}
  5. local run = game:GetService("RunService")
  6.  
  7. function scan(obj)
  8. if #obj>0 then
  9. else return
  10. end
  11. warn("Copying ".. #obj.. " objects.")
  12. for i = 1, #obj do
  13. if obj[i]:IsA("BasePart") and obj[i].Parent~=nil and obj[i].Parent:FindFirstChild("Humanoid")==nil and obj[i].Name~="Terrain" then
  14. local par = tostring(obj[i].Parent.Name) or "workspace"
  15. local par2 = tostring(obj[i].Parent.Parent.Name) or "workspace"
  16. local f = "\""
  17. local r = "["
  18. local r2 = "]"
  19. par = "Workspace"
  20. table.insert(objects,{
  21. "Part",
  22. "Parent = ".. par,
  23. tostring(obj[i].BrickColor),
  24. "Anchored = ".. tostring(obj[i].Anchored),
  25. "CanCollide = ".. tostring(obj[i].CanCollide),
  26. "Material = ".. tostring(obj[i].Material),
  27. tostring(obj[i].Name),
  28. tostring(obj[i].Size),
  29. tostring(obj[i].Position),
  30. tostring(obj[i].CFrame)
  31. })
  32. print("Copied ".. obj[i].Name)
  33. elseif obj[i]:IsA("Model") and obj[i].Name~="Terrain" and obj[i]~=nil and obj[i]:FindFirstChild("HumanoidRootPart")==nil then
  34. table.insert(objects,{
  35. "Model",
  36. "Parent = ".. "Workspace",
  37. tostring(obj[i].Name)
  38. })
  39. scan(obj[i]:GetChildren())
  40. print("Copied ".. obj[i].Name)
  41. elseif not obj[i]:IsA("Model") and not obj[i]:IsA("BasePart") then
  42. scan(obj[i]:GetChildren())
  43. end
  44. run.Heartbeat:Wait(0)
  45. end
  46. end
  47.  
  48. scan(workspace:GetChildren())
  49.  
  50. local source = ''
  51.  
  52. function ConvertSource(object)
  53. local ClassName
  54. local Parent
  55. local BrickColor
  56. local Name
  57. local Anchored
  58. local CanCollide
  59. local Material
  60. local Size
  61. local Position
  62. local CFrame
  63. if object[1]=="Part" and object[7]~="Terrain" then
  64. ClassName = object[1]
  65. Parent = object[2]
  66. BrickColor = [[BrickColor.new(]].. "\""..object[3].. "\"".. [[)]]
  67. Anchored = object[4]
  68. CanCollide = object[5]
  69. Material = object[6]
  70. Name = object[7]
  71. Size = object[8]
  72. Position = object[9]
  73. CFrame = object[10]
  74. local o = {Parent,BrickColor,Anchored,CanCollide,Material,Name}
  75. local varname = "f".. math.random(3,50000)
  76. Name = varname
  77. local st = varname.. " = ".. "Instance.new(".. "\"".. ClassName.."\"".. ")\n"
  78. st = st.. varname.. ".".. Parent.. "\n"
  79. st = st.. varname.. ".BrickColor = ".. BrickColor.. "\n"
  80. st = st.. varname.. ".".. Anchored.. "\n"
  81. st = st.. varname.. ".".. CanCollide.. "\n"
  82. st = st.. varname.. ".".. Material.. "\n"
  83. st = st.. varname.. ".Name = ".. "\"".. Name.. "\"".. "\n"
  84. st = st.. varname.. ".Size = Vector3.new(".. Size.. ")\n"
  85. st = st.. varname.. ".Position = Vector3.new(".. Position.. ")\n"
  86. st = st.. varname.. ".CFrame = CFrame.new(".. CFrame.. ")\n"
  87. source = source.. st
  88. elseif object[1]=="Model" then
  89. ClassName = object[1]
  90. Parent = object[2]
  91. Name = object[3]
  92. local o = {Parent,BrickColor,Anchored,CanCollide,Material,Name}
  93. local varname = "f".. math.random(3,50000)
  94. Name = varname
  95. local st = varname.. " = ".. "Instance.new(".. "\"".. ClassName.."\"".. ")\n"
  96. st = st.. varname.. ".".. Parent.. "\n"
  97. st = st.. varname.. ".Name = ".. "\"".. Name.. "\"".. "\n"
  98. source = source.. st
  99. end
  100.  
  101. end
  102.  
  103. for i,v in pairs(objects) do
  104. ConvertSource(v)
  105. end
  106.  
  107. clipboard = source
  108. setclipboard(source)
  109. end
  110.  
  111. function godmode()
  112. spawn(function()
  113. game.Players.LocalPlayer.Character.Humanoid:Destroy()
  114. while true do
  115.  
  116. local h = Instance.new("Humanoid",game.Players.LocalPlayer.Character)
  117. h.WalkSpeed = 55
  118. h.JumpPower = 55
  119. h.Name = " "
  120. for i,v in pairs(game:GetService('Players').LocalPlayer.Character:GetDescendants()) do
  121. if v:IsA'Hat' or v:IsA'Accessory' then
  122. v.Parent = game:GetService'Workspace'
  123. end
  124. end
  125. local animator = Instance.new("Animator",h)
  126. local anim = Instance.new("Animation",h)
  127. anim.AnimationId = "http://www.roblox.com/asset/?id=2856562263"
  128. anim = h:LoadAnimation(anim)
  129. anim:Play()
  130. wait(.5)
  131. anim:Destroy()
  132. h:Destroy()
  133. end
  134. end)
  135. end
  136. --[[
  137. this script was made by tollepuxis
  138. this script is rightfully owned by tollepuxis
  139. if you see this text that means you have purchased the source code
  140. if you see this text and have not purchased, your account will be blacklisted from ProtoSmasher
  141. and Synapse within 30 days for obtaining this script without proper purchase
  142. --]]
  143. --Objects
  144. local Skidz = Instance.new("ScreenGui")
  145. local Frame = Instance.new("Frame")
  146. local Frame_2 = Instance.new("Frame")
  147. local TextLabel = Instance.new("TextLabel")
  148. local TextLabel_2 = Instance.new("TextLabel")
  149. local scripts = Instance.new("TextButton")
  150. local Frame_3 = Instance.new("Frame")
  151. local exe = Instance.new("TextButton")
  152. local Frame_4 = Instance.new("Frame")
  153. local exe_2 = Instance.new("TextButton")
  154. local Frame_5 = Instance.new("Frame")
  155. local tab1 = Instance.new("Frame")
  156. local b1 = Instance.new("TextButton")
  157. local Frame_6 = Instance.new("Frame")
  158. local b2 = Instance.new("TextButton")
  159. local Frame_7 = Instance.new("Frame")
  160. local b3 = Instance.new("TextButton")
  161. local Frame_8 = Instance.new("Frame")
  162. local b4 = Instance.new("TextButton")
  163. local Frame_9 = Instance.new("Frame")
  164. local b5 = Instance.new("TextButton")
  165. local Frame_10 = Instance.new("Frame")
  166. local b6 = Instance.new("TextButton")
  167. local Frame_11 = Instance.new("Frame")
  168. local b7 = Instance.new("TextButton")
  169. local Frame_12 = Instance.new("Frame")
  170. local b8 = Instance.new("TextButton")
  171. local Frame_13 = Instance.new("Frame")
  172. local mini = Instance.new("TextButton")
  173. local tab2 = Instance.new("Frame")
  174. local source = Instance.new("ScrollingFrame")
  175. local box = Instance.new("TextBox")
  176. local global_ = Instance.new("TextLabel")
  177. local string_ = Instance.new("TextLabel")
  178. local keywords_ = Instance.new("TextLabel")
  179. local token_ = Instance.new("TextLabel")
  180. local lines = Instance.new("TextLabel")
  181. local TextLabel_3 = Instance.new("TextLabel")
  182. local Execute_ = Instance.new("TextButton")
  183. local Frame_14 = Instance.new("Frame")
  184. local output = Instance.new("ScrollingFrame")
  185. local text = Instance.new("TextLabel")
  186. local Circle = Instance.new("ImageLabel")
  187. --Properties:
  188. Skidz.Name = "Skidz"
  189. Skidz.Parent = game:GetService("CoreGui")
  190. Skidz.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  191.  
  192. Frame.Parent = Skidz
  193. Frame.BackgroundColor3 = Color3.new(1, 0.298039, 0.403922)
  194. Frame.BorderSizePixel = 0
  195. Frame.Position = UDim2.new(0.0836408362, 0, 0.161290318, 0)
  196. Frame.Size = UDim2.new(0, 545, 0, 313)
  197.  
  198. Frame_2.Parent = Frame
  199. Frame_2.BackgroundColor3 = Color3.new(0.784314, 0.298039, 0.403922)
  200. Frame_2.BorderSizePixel = 0
  201. Frame_2.Size = UDim2.new(0, 545, 0, 32)
  202.  
  203. TextLabel.Parent = Frame_2
  204. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  205. TextLabel.BackgroundTransparency = 1
  206. TextLabel.BorderSizePixel = 0
  207. TextLabel.Size = UDim2.new(0, 125, 0, 32)
  208. TextLabel.Font = Enum.Font.SourceSansLight
  209. TextLabel.Text = "SKIDZ UI"
  210. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  211. TextLabel.TextSize = 25
  212.  
  213. TextLabel_2.Parent = Frame_2
  214. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  215. TextLabel_2.BackgroundTransparency = 1
  216. TextLabel_2.BorderSizePixel = 0
  217. TextLabel_2.Position = UDim2.new(0.229357794, 0, 0, 0)
  218. TextLabel_2.Size = UDim2.new(0, 99, 0, 32)
  219. TextLabel_2.Font = Enum.Font.SourceSansLight
  220. TextLabel_2.Text = "0.1.2"
  221. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  222. TextLabel_2.TextSize = 25
  223.  
  224. scripts.Name = "scripts"
  225. scripts.Parent = Frame
  226. scripts.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  227. scripts.BorderSizePixel = 0
  228. scripts.Position = UDim2.new(0.124770641, 0, 0.169329062, 0)
  229. scripts.Size = UDim2.new(0, 120, 0, 27)
  230. scripts.Font = Enum.Font.SourceSansLight
  231. scripts.Text = "SCRIPTS"
  232. scripts.TextColor3 = Color3.new(1, 1, 1)
  233. scripts.TextSize = 20
  234.  
  235. Frame_3.Parent = scripts
  236. Frame_3.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  237. Frame_3.BorderSizePixel = 0
  238. Frame_3.Position = UDim2.new(0, 0, 1, 0)
  239. Frame_3.Size = UDim2.new(1, 0, 0.100000001, 0)
  240.  
  241. exe.Name = "exe"
  242. exe.Parent = Frame
  243. exe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  244. exe.BorderSizePixel = 0
  245. exe.Position = UDim2.new(0.374311924, 0, 0.169329062, 0)
  246. exe.Size = UDim2.new(0, 120, 0, 27)
  247. exe.Font = Enum.Font.SourceSansLight
  248. exe.Text = "EXECUTION"
  249. exe.TextColor3 = Color3.new(1, 1, 1)
  250. exe.TextSize = 20
  251.  
  252. Frame_4.Parent = exe
  253. Frame_4.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  254. Frame_4.BorderSizePixel = 0
  255. Frame_4.Position = UDim2.new(0, 0, 1, 0)
  256. Frame_4.Size = UDim2.new(1, 0, 0.100000001, 0)
  257.  
  258. exe_2.Name = "exe"
  259. exe_2.Parent = Frame
  260. exe_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  261. exe_2.BorderSizePixel = 0
  262. exe_2.Position = UDim2.new(0.625688076, 0, 0.169329062, 0)
  263. exe_2.Size = UDim2.new(0, 120, 0, 27)
  264. exe_2.Font = Enum.Font.SourceSansLight
  265. exe_2.Text = "THEMES"
  266. exe_2.TextColor3 = Color3.new(1, 1, 1)
  267. exe_2.TextSize = 20
  268.  
  269. Frame_5.Parent = exe_2
  270. Frame_5.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  271. Frame_5.BorderSizePixel = 0
  272. Frame_5.Position = UDim2.new(0, 0, 1, 0)
  273. Frame_5.Size = UDim2.new(1, 0, 0.100000001, 0)
  274.  
  275. tab1.Name = "tab1"
  276. tab1.Parent = Frame
  277. tab1.BackgroundColor3 = Color3.new(1, 1, 1)
  278. tab1.BackgroundTransparency = 1
  279. tab1.Position = UDim2.new(0, 0, 0.316293925, 0)
  280. tab1.Size = UDim2.new(0, 545, 0, 214)
  281.  
  282. b1.Name = "b1"
  283. b1.Parent = tab1
  284. b1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  285. b1.BorderSizePixel = 0
  286. b1.Position = UDim2.new(0.00917428732, 0, 0.136618778, 0)
  287. b1.Size = UDim2.new(0, 120, 0, 27)
  288. b1.Font = Enum.Font.SourceSansLight
  289. b1.Text = "GOD MODE"
  290. b1.TextColor3 = Color3.new(1, 1, 1)
  291. b1.TextSize = 20
  292.  
  293. Frame_6.Parent = b1
  294. Frame_6.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  295. Frame_6.BorderSizePixel = 0
  296. Frame_6.Position = UDim2.new(0, 0, 1, 0)
  297. Frame_6.Size = UDim2.new(1, 0, 0.100000001, 0)
  298.  
  299. b2.Name = "b2"
  300. b2.Parent = tab1
  301. b2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  302. b2.BorderSizePixel = 0
  303. b2.Position = UDim2.new(0.256880701, 0, 0.136618778, 0)
  304. b2.Size = UDim2.new(0, 120, 0, 27)
  305. b2.Font = Enum.Font.SourceSansLight
  306. b2.Text = "STRUCID AIMBOT"
  307. b2.TextColor3 = Color3.new(1, 1, 1)
  308. b2.TextSize = 20
  309.  
  310. Frame_7.Parent = b2
  311. Frame_7.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  312. Frame_7.BorderSizePixel = 0
  313. Frame_7.Position = UDim2.new(0, 0, 1, 0)
  314. Frame_7.Size = UDim2.new(1, 0, 0.100000001, 0)
  315.  
  316. b3.Name = "b3"
  317. b3.Parent = tab1
  318. b3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  319. b3.BorderSizePixel = 0
  320. b3.Position = UDim2.new(0.502752244, 0, 0.136618778, 0)
  321. b3.Size = UDim2.new(0, 120, 0, 27)
  322. b3.Font = Enum.Font.SourceSansLight
  323. b3.Text = "DEX V4"
  324. b3.TextColor3 = Color3.new(1, 1, 1)
  325. b3.TextSize = 20
  326.  
  327. Frame_8.Parent = b3
  328. Frame_8.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  329. Frame_8.BorderSizePixel = 0
  330. Frame_8.Position = UDim2.new(0, 0, 1, 0)
  331. Frame_8.Size = UDim2.new(1, 0, 0.100000001, 0)
  332.  
  333. b4.Name = "b4"
  334. b4.Parent = tab1
  335. b4.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  336. b4.BorderSizePixel = 0
  337. b4.Position = UDim2.new(0.746788979, 0, 0.136618778, 0)
  338. b4.Size = UDim2.new(0, 120, 0, 27)
  339. b4.Font = Enum.Font.SourceSansLight
  340. b4.Text = "GAME COPIER"
  341. b4.TextColor3 = Color3.new(1, 1, 1)
  342. b4.TextSize = 20
  343.  
  344. Frame_9.Parent = b4
  345. Frame_9.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  346. Frame_9.BorderSizePixel = 0
  347. Frame_9.Position = UDim2.new(0, 0, 1, 0)
  348. Frame_9.Size = UDim2.new(1, 0, 0.100000001, 0)
  349.  
  350. b5.Name = "b5"
  351. b5.Parent = tab1
  352. b5.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  353. b5.BorderSizePixel = 0
  354. b5.Position = UDim2.new(0.00917428732, 0, 0.351572037, 0)
  355. b5.Size = UDim2.new(0, 120, 0, 27)
  356. b5.Font = Enum.Font.SourceSansLight
  357. b5.Text = "QUICK TP"
  358. b5.TextColor3 = Color3.new(1, 1, 1)
  359. b5.TextSize = 20
  360.  
  361. Frame_10.Parent = b5
  362. Frame_10.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  363. Frame_10.BorderSizePixel = 0
  364. Frame_10.Position = UDim2.new(0, 0, 1, 0)
  365. Frame_10.Size = UDim2.new(1, 0, 0.100000001, 0)
  366.  
  367. b6.Name = "b6"
  368. b6.Parent = tab1
  369. b6.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  370. b6.BorderSizePixel = 0
  371. b6.Position = UDim2.new(0.256880701, 0, 0.351572037, 0)
  372. b6.Size = UDim2.new(0, 120, 0, 27)
  373. b6.Font = Enum.Font.SourceSansLight
  374. b6.Text = "FLY TOOL"
  375. b6.TextColor3 = Color3.new(1, 1, 1)
  376. b6.TextSize = 20
  377.  
  378. Frame_11.Parent = b6
  379. Frame_11.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  380. Frame_11.BorderSizePixel = 0
  381. Frame_11.Position = UDim2.new(0, 0, 1, 0)
  382. Frame_11.Size = UDim2.new(1, 0, 0.100000001, 0)
  383.  
  384. b7.Name = "b7"
  385. b7.Parent = tab1
  386. b7.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  387. b7.BorderSizePixel = 0
  388. b7.Position = UDim2.new(0.502752244, 0, 0.351572037, 0)
  389. b7.Size = UDim2.new(0, 120, 0, 27)
  390. b7.Font = Enum.Font.SourceSansLight
  391. b7.Text = "DEX V3"
  392. b7.TextColor3 = Color3.new(1, 1, 1)
  393. b7.TextSize = 20
  394.  
  395. Frame_12.Parent = b7
  396. Frame_12.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  397. Frame_12.BorderSizePixel = 0
  398. Frame_12.Position = UDim2.new(0, 0, 1, 0)
  399. Frame_12.Size = UDim2.new(1, 0, 0.100000001, 0)
  400.  
  401. b8.Name = "b8"
  402. b8.Parent = tab1
  403. b8.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  404. b8.BorderSizePixel = 0
  405. b8.Position = UDim2.new(0.746788979, 0, 0.351572037, 0)
  406. b8.Size = UDim2.new(0, 120, 0, 27)
  407. b8.Font = Enum.Font.SourceSansLight
  408. b8.Text = "CLICK TP"
  409. b8.TextColor3 = Color3.new(1, 1, 1)
  410. b8.TextSize = 20
  411.  
  412. Frame_13.Parent = b8
  413. Frame_13.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  414. Frame_13.BorderSizePixel = 0
  415. Frame_13.Position = UDim2.new(0, 0, 1, 0)
  416. Frame_13.Size = UDim2.new(1, 0, 0.100000001, 0)
  417.  
  418. mini.Name = "mini"
  419. mini.Parent = Frame
  420. mini.BackgroundColor3 = Color3.new(1, 0.235294, 0.501961)
  421. mini.BorderSizePixel = 0
  422. mini.Position = UDim2.new(0.941284418, 0, 0, 0)
  423. mini.Size = UDim2.new(0, 32, 0, 32)
  424. mini.Font = Enum.Font.SourceSans
  425. mini.Text = "[]"
  426. mini.TextColor3 = Color3.new(0, 0, 0)
  427. mini.TextSize = 20
  428.  
  429. tab2.Name = "tab2"
  430. tab2.Parent = Frame
  431. tab2.BackgroundColor3 = Color3.new(1, 1, 1)
  432. tab2.BackgroundTransparency = 1
  433. tab2.Position = UDim2.new(0, 0, 0.316293925, 0)
  434. tab2.Size = UDim2.new(0, 545, 0, 214)
  435.  
  436. source.Name = "source"
  437. source.Parent = tab2
  438. source.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  439. source.BorderSizePixel = 0
  440. source.Position = UDim2.new(0, 0, -0.00467289705, 0)
  441. source.Size = UDim2.new(0, 490, 0, 215)
  442. source.CanvasSize = UDim2.new(0, 0, 0, 2000)
  443. source.ScrollBarThickness = 8
  444.  
  445. box.Name = "box"
  446. box.Parent = source
  447. box.BackgroundColor3 = Color3.new(1, 1, 1)
  448. box.BackgroundTransparency = 1
  449. box.Position = UDim2.new(0.0612244904, 0, 0, 0)
  450. box.Size = UDim2.new(0, 511, 0, 2000)
  451. box.Font = Enum.Font.Code
  452. box.Text = ""
  453. box.TextColor3 = Color3.new(1, 1, 1)
  454. box.TextSize = 15
  455. box.TextXAlignment = Enum.TextXAlignment.Left
  456. box.TextYAlignment = Enum.TextYAlignment.Top
  457.  
  458. global_.Name = "global_"
  459. global_.Parent = box
  460. global_.BackgroundColor3 = Color3.new(1, 0, 0)
  461. global_.BackgroundTransparency = 1
  462. global_.Size = UDim2.new(1, 0, 0, 2000)
  463. global_.Font = Enum.Font.Code
  464. global_.Text = ""
  465. global_.TextColor3 = Color3.new(1, 0, 0.0156863)
  466. global_.TextSize = 15
  467. global_.TextXAlignment = Enum.TextXAlignment.Left
  468. global_.TextYAlignment = Enum.TextYAlignment.Top
  469.  
  470. string_.Name = "string_"
  471. string_.Parent = box
  472. string_.BackgroundColor3 = Color3.new(1, 0, 0)
  473. string_.BackgroundTransparency = 1
  474. string_.Size = UDim2.new(1, 0, 0, 2000)
  475. string_.Font = Enum.Font.Code
  476. string_.Text = ""
  477. string_.TextColor3 = Color3.new(1, 0.556863, 0.109804)
  478. string_.TextSize = 15
  479. string_.TextXAlignment = Enum.TextXAlignment.Left
  480. string_.TextYAlignment = Enum.TextYAlignment.Top
  481.  
  482. keywords_.Name = "keywords_"
  483. keywords_.Parent = box
  484. keywords_.BackgroundColor3 = Color3.new(1, 0, 0)
  485. keywords_.BackgroundTransparency = 1
  486. keywords_.Size = UDim2.new(1, 0, 0, 2000)
  487. keywords_.Font = Enum.Font.Code
  488. keywords_.Text = ""
  489. keywords_.TextColor3 = Color3.fromRGB(29, 76, 230)
  490. keywords_.TextSize = 15
  491. keywords_.TextXAlignment = Enum.TextXAlignment.Left
  492. keywords_.TextYAlignment = Enum.TextYAlignment.Top
  493.  
  494. token_.Name = "token_"
  495. token_.Parent = box
  496. token_.BackgroundColor3 = Color3.new(1, 0, 0)
  497. token_.BackgroundTransparency = 1
  498. token_.Size = UDim2.new(1, 0, 0, 2000)
  499. token_.Font = Enum.Font.Code
  500. token_.Text = ""
  501. token_.TextColor3 = Color3.fromRGB(255, 0, 110)
  502. token_.TextSize = 15
  503. token_.TextXAlignment = Enum.TextXAlignment.Left
  504. token_.TextYAlignment = Enum.TextYAlignment.Top
  505.  
  506. local keyw = token_:Clone()
  507. keyw.Parent = box
  508. keyw.TextColor3 = Color3.new(1,1,0)
  509.  
  510. lines.Name = "lines"
  511. lines.Parent = source
  512. lines.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  513. lines.BorderSizePixel = 0
  514. lines.Size = UDim2.new(0, 30, 0, 215)
  515. lines.TextSize = 10
  516. lines.Font = "Code"
  517.  
  518. --TextLabel_3.Parent = lines
  519. --TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  520. --TextLabel_3.BackgroundTransparency = 1
  521. --TextLabel_3.Size = UDim2.new(0, 30, 0, 18)
  522. --TextLabel_3.Font = Enum.Font.Code
  523. --TextLabel_3.Text = "1"
  524. --TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  525. --TextLabel_3.TextSize = 20
  526.  
  527. Execute_.Name = "Execute_"
  528. Execute_.Parent = tab2
  529. Execute_.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  530. Execute_.BorderSizePixel = 0
  531. Execute_.Position = UDim2.new(0.899082541, 0, 0.519796371, 0)
  532. Execute_.Size = UDim2.new(0, 55, 0, 55)
  533. Execute_.Font = Enum.Font.SourceSansLight
  534. Execute_.Text = "EXECUTE"
  535. Execute_.TextColor3 = Color3.new(1, 1, 1)
  536. Execute_.TextScaled = true
  537. Execute_.TextSize = 20
  538. Execute_.TextWrapped = true
  539.  
  540. Frame_14.Parent = Execute_
  541. Frame_14.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  542. Frame_14.BorderSizePixel = 0
  543. Frame_14.Position = UDim2.new(0, 0, 1, 0)
  544. Frame_14.Size = UDim2.new(1, 0, 0.100000001, 0)
  545.  
  546. output.Name = "output"
  547. output.Parent = tab2
  548. output.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  549. output.BorderSizePixel = 0
  550. output.Position = UDim2.new(1, 0, 0.211385146, 0)
  551. output.Size = UDim2.new(0, 200, 0, 126)
  552.  
  553. text.Name = "text"
  554. text.Parent = output
  555. text.BackgroundColor3 = Color3.new(1, 1, 1)
  556. text.BackgroundTransparency = 1
  557. text.Size = UDim2.new(0, 200, 0, 2000)
  558. text.Font = Enum.Font.SourceSans
  559. text.Text = ""
  560. text.TextColor3 = Color3.new(1, 0, 0.0156863)
  561. text.TextSize = 14
  562. text.TextWrapped = true
  563. text.TextXAlignment = Enum.TextXAlignment.Left
  564. text.TextYAlignment = Enum.TextYAlignment.Top
  565.  
  566. Circle.Name = "Circle"
  567. Circle.Parent = Skidz
  568. Circle.BackgroundColor3 = Color3.new(1, 1, 1)
  569. Circle.BackgroundTransparency = 1
  570. Circle.ZIndex = 10
  571. Circle.Image = "rbxassetid://266543268"
  572. Circle.ImageColor3 = Color3.new(0, 0, 0)
  573. Circle.ImageTransparency = 0.89999997615814
  574.  
  575. scripts.MouseButton1Click:Connect(function()
  576. tab1.Visible = true
  577. tab2.Visible = false
  578. playSound("rbxassetid://156785206",1,1)
  579. end)
  580. exe.MouseButton1Click:Connect(function()
  581. tab1.Visible = false
  582. tab2.Visible = true
  583. playSound("rbxassetid://156785206",1,1)
  584. end)
  585. function funcautofill(s)
  586. s = s.. "()"
  587. return s
  588. end
  589. local Highlight = function(string, keywords)
  590. local K = {}
  591. local S = string
  592. local Token =
  593. {
  594. ["="] = true,
  595. ["."] = true,
  596. [","] = true,
  597. ["("] = true,
  598. [")"] = true,
  599. ["["] = true,
  600. ["]"] = true,
  601. ["{"] = true,
  602. ["}"] = true,
  603. [":"] = true,
  604. ["*"] = true,
  605. ["/"] = true,
  606. ["+"] = true,
  607. ["-"] = true,
  608. ["%"] = true,
  609. [";"] = true,
  610. ["~"] = true
  611. }
  612. for i, v in pairs(keywords) do
  613. K[v] = true
  614. end
  615. S = S:gsub(".", function(c)
  616. if Token[c] ~= nil then
  617. return "\32"
  618. else
  619. return c
  620. end
  621. end)
  622. S = S:gsub("%S+", function(c)
  623. if K[c] ~= nil then
  624. return c
  625. else
  626. return (" "):rep(#c)
  627. end
  628. end)
  629. return S
  630. end
  631. local hTokens = function(string)
  632. local Token =
  633. {
  634. ["="] = true,
  635. ["."] = true,
  636. [","] = true,
  637. ["("] = true,
  638. [")"] = true,
  639. ["["] = true,
  640. ["]"] = true,
  641. ["{"] = true,
  642. ["}"] = true,
  643. [":"] = true,
  644. ["*"] = true,
  645. ["/"] = true,
  646. ["+"] = true,
  647. ["-"] = true,
  648. ["%"] = true,
  649. [";"] = true,
  650. ["~"] = true
  651. }
  652. local A = ""
  653. string:gsub(".", function(c)
  654. if Token[c] ~= nil then
  655. A = A .. c
  656. elseif c == "\n" then
  657. A = A .. "\n"
  658. elseif c == "\t" then
  659. A = A .. "\t"
  660. else
  661. A = A .. "\32"
  662. end
  663. end)
  664.  
  665. return A
  666. end
  667.  
  668. local hNumbers= function(string)
  669. local Token =
  670. {
  671. ["1"] = true,
  672. ["2"] = true,
  673. ["3"] = true,
  674. ["4"] = true,
  675. ["5"] = true,
  676. ["6"] = true,
  677. ["7"] = true,
  678. ["8"] = true,
  679. ["9"] = true,
  680. ["0"] = true
  681. }
  682. local A = ""
  683. string:gsub(".", function(c)
  684. if Token[c] ~= nil then
  685. A = A .. c
  686. elseif c == "\n" then
  687. A = A .. "\n"
  688. elseif c == "\t" then
  689. A = A .. "\t"
  690. else
  691. A = A .. "\32"
  692. end
  693. end)
  694.  
  695. return A
  696. end
  697.  
  698.  
  699. local strings = function(string)
  700. local highlight = ""
  701. local quote = false
  702. string:gsub(".", function(c)
  703. if quote == false and c == "\"" then
  704. quote = true
  705. elseif quote == true and c == "\"" then
  706. quote = false
  707. end
  708. if quote == false and c == "\"" then
  709. highlight = highlight .. "\""
  710. elseif c == "\n" then
  711. highlight = highlight .. "\n"
  712. elseif c == "\t" then
  713. highlight = highlight .. "\t"
  714. elseif quote == true then
  715. highlight = highlight .. c
  716. elseif quote == false then
  717. highlight = highlight .. "\32"
  718. end
  719. end)
  720.  
  721. return highlight
  722. end
  723. local lua_keywords = {"and", "break", "do", "else", "elseif", "end", "false", "for", "function", "goto", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while"}
  724. local global_env = {"getrawmetatable", "game", "script", "math", "string", "table", "print", "wait", "BrickColor", "Color3", "next", "pairs", "ipairs", "select", "unpack", "Instance", "Vector2", "Vector3", "CFrame", "Ray", "UDim2", "Enum", "assert", "error", "warn", "tick", "loadstring", "_G", "shared", "getfenv", "setfenv", "newproxy", "setmetatable", "getmetatable", "os", "debug", "pcall", "ypcall", "xpcall", "rawequal", "rawset", "rawget", "tonumber", "tostring", "type", "typeof", "_VERSION", "coroutine", "delay", "require", "spawn", "LoadLibrary", "settings", "stats", "time", "UserSettings", "version", "Axes", "ColorSequence", "Faces", "ColorSequenceKeypoint", "NumberRange", "NumberSequence", "NumberSequenceKeypoint", "gcinfo", "elapsedTime", "collectgarbage", "PhysicalProperties", "Rect", "Region3", "Region3int16", "UDim", "Vector2int16", "Vector3int16"}
  725. local exploitkeywords = {"is_protosmasher_caller","invokeServer","InvokeServer","FireServer","fireServer","Synapse","i","v","x","_","saveinstance","decompile","workspace","LocalPlayer","localPlayer","god"}
  726. local nums = string_:Clone()
  727. nums.Parent = box
  728. nums.TextColor3 = Color3.fromRGB(123, 47, 123)
  729. tab2.Visible = false
  730.  
  731.  
  732. function HighlightSource()
  733. local Source_ = box
  734. Source_.Text = Source_.Text:gsub("\13", "")
  735. Source_.Text = Source_.Text:gsub("\t", " ")
  736. global_.Text = Highlight(box.Text,global_env)
  737. keywords_.Text = Highlight(box.Text,lua_keywords)
  738. string_.Text = strings(box.Text)
  739. token_.Text = hTokens(box.Text)
  740. keyw.Text = Highlight(box.Text,exploitkeywords)
  741. nums.Text = hNumbers(box.Text)
  742. local lin = 1
  743. local s = Source_.Text
  744. s:gsub("\n", function()
  745. lin = lin + 1
  746. end)
  747. lines.Text = ""
  748. for i = 1, lin do
  749. lines.Text = lines.Text .. i .. "\n"
  750. end
  751. end
  752. box.MultiLine = true
  753. box.ClearTextOnFocus = false
  754.  
  755. lines.Text = 1
  756. function playSound(id,v,p)
  757. local s = Instance.new("Sound",Skidz)
  758. s.SoundId = id or "rbxassetid://582374365"
  759. s.Volume = v or 1
  760. s.PlaybackSpeed = p or 1
  761. s:Play()
  762. game:GetService("Debris"):addItem(s,12)
  763. end
  764. box.Changed:Connect(HighlightSource)
  765. local y = 0
  766. function logoutput(err)
  767. local fx = text:Clone()
  768. fx.Size = UDim2.new(1,0,0,30)
  769. fx.Position = UDim2.new(0,0,0,y)
  770. y = y + 22
  771. fx.Parent = output
  772. fx.Text = err
  773. end
  774. function printoutput(err)
  775. local fx = text:Clone()
  776. fx.Size = UDim2.new(1,0,0,30)
  777. fx.Position = UDim2.new(0,0,0,y)
  778. fx.TextColor3 = Color3.new(1,1,1)
  779. y = y + 22
  780. fx.Parent = output
  781. fx.Text = err
  782. end
  783. function warnoutput(err)
  784. local fx = text:Clone()
  785. fx.Size = UDim2.new(1,0,0,30)
  786. fx.Position = UDim2.new(0,0,0,y)
  787. fx.TextColor3 = Color3.fromRGB(255, 86, 19)
  788. y = y + 22
  789. fx.Parent = output
  790. fx.Text = err
  791. end
  792. lines.TextYAlignment = "Top"
  793. lines.TextColor3 = Color3.new(1,1,1)
  794. lines.Size = UDim2.new(0,30,0,2000)
  795. Execute_.MouseButton1Click:Connect(function()
  796. warnoutput("Loading script . . .")
  797. playSound("rbxassetid://156785206",1,1)
  798. xpcall(function()
  799. local func = loadstring(box.Text)
  800. if not func then
  801. logoutput("Syntax error . . . - ".. script.Name)
  802. playSound("rbxassetid://582374365",1,1)
  803. elseif func~=nil then
  804. func()
  805. playSound("rbxassetid://226892749",1,1)
  806. end
  807. end, function(err) playSound("rbxassetid://226892749",1,1) logoutput(err) warnoutput("Script has not been executed.")
  808. end)
  809. end)
  810. local clear = Execute_:Clone()
  811. clear.Text = "Clear"
  812. clear.Position = clear.Position + UDim2.new(0,0,0,-75)
  813. clear.Parent = Execute_.Parent
  814. local save = clear:Clone()
  815. save.Text = "SAVE SCRIPT"
  816. save.Parent = Execute_.Parent
  817. save.Position = save.Position + UDim2.new(0,0,0,-75)
  818.  
  819. function savefile(name,filetype,data)
  820. return writefile(name.. '.'.. filetype, data)
  821. end
  822.  
  823. function read(file)
  824. return readfile(file)
  825. end
  826.  
  827. Frame.Active = true
  828. Frame.Draggable = true
  829. clear.MouseButton1Click:Connect(function()
  830. playSound("rbxassetid://156785206",1,1)
  831. box.Text = ""
  832. y = 0
  833. output:ClearAllChildren()
  834. end)
  835. local version = "0.1.55"
  836. TextLabel_2.Text = version
  837. box.Text = [[print("Welcome to SKIDZ Execution!")]]
  838. lines.TextSize = 15
  839. clear.Text = "CLEAR"
  840. local open = true
  841. local StartSize = Frame.Size
  842. local StartSizeX = UDim2.new(0,545,0,32)
  843. local twen = false
  844. function Hide()
  845. if twen==false then
  846. twen=true
  847. else
  848. return
  849. end
  850. for i,v in pairs(Frame:GetChildren()) do
  851. if v:IsA("TextButton") and v~=mini then
  852. v.Visible = false
  853. end
  854. end
  855. Frame:TweenSize(StartSizeX,'InOut','Sine',.5)
  856. mini:TweenPosition(UDim2.new(0,164-32,0,0),'InOut','Sine',.5)
  857. tab1.ClipsDescendants = true
  858. tab2.ClipsDescendants = true
  859. Frame.ClipsDescendants = true
  860. if tab1.Visible==true then
  861. tab1.Visible=false
  862. elseif tab2.Visible==true then
  863. tab2.Visible=false
  864. end
  865. mini.Text = "[ ]"
  866. playSound("rbxassetid://472556995",1,.9)
  867. wait(.5)
  868. Frame:TweenSize(UDim2.new(0,164,0,32),'InOut','Sine',.5)
  869.  
  870. wait(.45)
  871. twen=false
  872. end
  873. function Show()
  874. if twen==false then
  875. twen=true
  876. else
  877. return
  878. end
  879. mini:TweenPosition(UDim2.new(.941,0,0,0),'InOut','Sine',.5)
  880. Frame:TweenSize(StartSizeX,'InOut','Sine',.5)
  881. mini.Text = "[]"
  882. playSound("rbxassetid://472556995",1,1)
  883. if tab1.Visible==false then
  884. tab1.Visible=true
  885. elseif tab2.Visible==false then
  886. tab2.Visible=true
  887. end
  888. wait(.5)
  889. Frame:TweenSize(StartSize,'InOut','Sine',.5)
  890. for i,v in pairs(Frame:GetChildren()) do
  891. if v:IsA("TextButton") then
  892. v.Visible = true
  893. end
  894. end
  895. wait(.45)
  896. tab1.ClipsDescendants = false
  897. tab2.ClipsDescendants = false
  898. Frame.ClipsDescendants = false
  899. twen=false
  900. end
  901.  
  902. mini.MouseButton1Click:Connect(function()
  903. if open==false then
  904. open=true
  905. Show()
  906. else
  907. open=false
  908. Hide()
  909. end
  910. end)
  911.  
  912. local c = 0
  913. Skidz.ResetOnSpawn = false
  914. local version = "0.84.3F (PREMIUM)"
  915. function DECOMPILE(script)
  916. if script then
  917. local source = script.Source
  918. if source~=nil and source~="" then
  919. local rfax = "--decomiled by Skidz \n"
  920. source = rfax.. source
  921. savefile("decompileScript", "txt", source)
  922. end
  923. end
  924. end
  925. save.MouseButton1Click:Connect(function()
  926. c = c + 1
  927. local rfax = "--generated by Skidz UI ".. version.. "\n"
  928. rfax = rfax.. "--created by tollepuxis \n"
  929. rfax = rfax.. "--https://discord.gg/9W9dMSj"
  930. local sfh = rfax.. "\n".. box.Text
  931. playSound("rbxassetid://156785206",1,1)
  932. savefile("script".. c, 'txt', sfh)
  933. printoutput("Saved as ".. "script".. c.. ".".. "txt".."!")
  934. warnoutput([[Type "print(readfile(script]].. c.. [[.txt)) to view source.]])
  935. end)
  936.  
  937. --[[
  938. ========
  939. buttons (loadstring included)
  940. (local parts)
  941. (server parts)
  942. (ew wtf is that)
  943. (stop viewing the source pls)
  944. =======
  945. --]]
  946.  
  947. function GiveFlyTool()
  948. local plr = game:GetService("Players").LocalPlayer
  949. local backpack = plr:WaitForChild("Backpack")
  950. if backpack:FindFirstChild("Fly") then
  951. return
  952. else
  953. local New = function(obj,data)
  954. local o = Instance.new(obj)
  955. for _index,dex in pairs(data) do
  956. o[_index] = dex
  957. end
  958. return o
  959. end
  960.  
  961. local fly = New("HopperBin",{
  962. Parent = nil,
  963. Name = "Fly"
  964. })
  965. local m = New("Model",{
  966. Parent = fly,
  967. Name = "Data"
  968. })
  969. local mouse = plr:getMouse()
  970. local flying = false
  971. local speed = 100
  972. local vel = Instance.new("BodyVelocity",plr.Character:WaitForChild("HumanoidRootPart"))
  973. vel.Velocity = Vector3.new()
  974. vel.Parent = nil
  975. local mouseDown = false
  976. local char = plr.Character
  977. fly.Selected:Connect(function()
  978. flying = true
  979. end)
  980. fly.Deselected:Connect(function()
  981. flying = false
  982. end)
  983. mouse.Button1Down:Connect(function()
  984. mouseDown = true
  985. end)
  986. mouse.Button1Up:Connect(function()
  987. mouseDown = false
  988. end)
  989. mouse.KeyDown:Connect(function(key)
  990. key = key:lower()
  991.  
  992. if key=="e" then --toggle fly
  993. if flying==false then flying = true else flying = false end
  994. elseif key=="q" then -- fly speed
  995. if speed==100 then
  996. speed = 50
  997. else
  998. speed = 100
  999. end
  1000. end
  1001. end)
  1002. spawn(function()
  1003. while wait() do
  1004. if flying==true then
  1005. vel.Parent = char:WaitForChild("HumanoidRootPart")
  1006. else
  1007. vel.Parent = nil
  1008. end
  1009. if mouseDown==true then
  1010. vel.Velocity = mouse.Hit.lookVector * speed
  1011. else
  1012. vel.Velocity = Vector3.new()
  1013. end
  1014. end
  1015. end)
  1016. end
  1017. end
  1018.  
  1019. b6.MouseButton1Click:Connect(function()
  1020. GiveFlyTool()
  1021. end)
  1022. local copying = false
  1023. b4.MouseButton1Click:Connect(function()
  1024. if copying==false then
  1025. copying=true
  1026. b4.Text = "COPYING..."
  1027. copyWorkspace()
  1028. b4.Text = "FINISHED!"
  1029. end
  1030. end)
  1031. local godded = false
  1032. b1.MouseButton1Click:Connect(function()
  1033. if godded==false then
  1034. godded=true
  1035. b1.Text = "GOD MODE (ACTIVE)"
  1036. spawn(godmode())
  1037. end
  1038. end)
  1039. version = "0.8.54"
  1040. TextLabel_2.Text = version
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement