Advertisement
Guest User

sk8r UI

a guest
Oct 15th, 2018
800
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.12 KB | None | 0 0
  1. -- Objects
  2.  
  3. local p = game.Players.LocalPlayer
  4. local sk8r = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local ubar = Instance.new("Frame")
  7. local dbar = Instance.new("Frame")
  8. local keyput = Instance.new("TextBox")
  9. local submit = Instance.new("TextButton")
  10. local title = Instance.new("ImageLabel")
  11. local exeSay = Instance.new("TextButton")
  12. local clr = Instance.new("TextButton")
  13. local exe = Instance.new("TextButton")
  14. local leave = Instance.new("TextButton")
  15. local stats = Instance.new("TextLabel")
  16. local inject = Instance.new("TextButton")
  17. local ScrollingFrame = Instance.new("ScrollingFrame")
  18. local input = Instance.new("TextBox")
  19. local random = Instance.new("Frame")
  20.  
  21. -- Properties
  22.  
  23. sk8r.Name = "sk8r"
  24. sk8r.Parent = p.PlayerGui
  25.  
  26. main.Name = "main"
  27. main.Parent = sk8r
  28. main.Active = true
  29. main.Draggable = true
  30. main.BackgroundColor3 = Color3.new(1, 1, 1)
  31. main.BorderSizePixel = 0
  32. main.Position = UDim2.new(0.10150376, 0, 0.127272725, 0)
  33. main.Size = UDim2.new(0, 647, 0, 403)
  34.  
  35. ubar.Name = "ubar"
  36. ubar.Parent = main
  37. ubar.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  38. ubar.BorderSizePixel = 0
  39. ubar.Size = UDim2.new(0, 647, 0, 50)
  40.  
  41. dbar.Name = "dbar"
  42. dbar.Parent = main
  43. dbar.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  44. dbar.BorderSizePixel = 0
  45. dbar.Position = UDim2.new(0, 0, 0.875930548, 0)
  46. dbar.Size = UDim2.new(0, 647, 0, 50)
  47.  
  48. keyput.Name = "keyput"
  49. keyput.Parent = main
  50. keyput.BackgroundColor3 = Color3.new(1, 1, 1)
  51. keyput.Position = UDim2.new(0.210200906, 0, 0.910669982, 0)
  52. keyput.Size = UDim2.new(0, 200, 0, 21)
  53. keyput.Text = "Key Required!"
  54. keyput.TextColor3 = Color3.new(0, 0, 0)
  55. keyput.TextSize = 14
  56. keyput.TextWrapped = true
  57. keyput.TextXAlignment = Enum.TextXAlignment.Left
  58.  
  59. submit.Name = "submit"
  60. submit.Parent = main
  61. submit.BackgroundColor3 = Color3.new(0, 0, 0)
  62. submit.BorderSizePixel = 0
  63. submit.Position = UDim2.new(0.564142227, 0, 0.910669982, 0)
  64. submit.Size = UDim2.new(0, 146, 0, 21)
  65. submit.Text = "Submit"
  66. submit.TextColor3 = Color3.new(1, 1, 1)
  67. submit.TextScaled = true
  68. submit.TextSize = 14
  69. submit.TextWrapped = true
  70. submit.MouseButton1Down:connect(function()
  71. if keyput.Text == "sk8rboy" then
  72. submit:Destroy()
  73. keyput:Destroy()
  74. exeSay.Visible = true
  75. clr.Visible = true
  76. inject.Visible = true
  77. end
  78. end)
  79. title.Name = "title"
  80. title.Parent = main
  81. title.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  82. title.BorderSizePixel = 0
  83. title.Size = UDim2.new(0, 74, 0, 44)
  84. title.Image = "rbxgameasset://Images/ska"
  85. title.ImageColor3 = Color3.new(1, 0.666667, 0)
  86.  
  87. exeSay.Name = "exeSay"
  88. exeSay.Parent = main
  89. exeSay.BackgroundColor3 = Color3.new(0, 0, 0)
  90. exeSay.BorderSizePixel = 0
  91. exeSay.Position = UDim2.new(0.041731067, 0, 0.910669982, 0)
  92. exeSay.Size = UDim2.new(0, 71, 0, 21)
  93. exeSay.Visible = false
  94. exeSay.Text = "Execute"
  95. exeSay.TextColor3 = Color3.new(1, 1, 1)
  96. exeSay.TextScaled = true
  97. exeSay.TextSize = 14
  98. exeSay.TextWrapped = true
  99.  
  100. clr.Name = "clr"
  101. clr.Parent = main
  102. clr.BackgroundColor3 = Color3.new(0, 0, 0)
  103. clr.BorderSizePixel = 0
  104. clr.Position = UDim2.new(0.204018533, 0, 0.910669982, 0)
  105. clr.Size = UDim2.new(0, 71, 0, 21)
  106. clr.Visible = false
  107. clr.Text = "Clear"
  108. clr.TextColor3 = Color3.new(1, 1, 1)
  109. clr.TextScaled = true
  110. clr.TextSize = 14
  111. clr.TextWrapped = true
  112. clr.MouseButton1Down:connect(function()
  113. input.Text = ""
  114. end)
  115. exe.Name = "exe"
  116. exe.Parent = main
  117. exe.BackgroundColor3 = Color3.new(0, 0, 0)
  118. exe.BorderSizePixel = 0
  119. exe.Position = UDim2.new(0.041731067, 0, 0.910669982, 0)
  120. exe.Size = UDim2.new(0, 71, 0, 21)
  121. exe.Visible = false
  122. exe.Text = "Execute"
  123. exe.TextColor3 = Color3.new(1, 1, 1)
  124. exe.TextScaled = true
  125. exe.TextSize = 14
  126. exe.TextWrapped = true
  127. exe.MouseButton1Down:connect(function()
  128. if input.Text == "function(btools)()" then
  129. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 2
  130. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 2
  131. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 3
  132. Instance.new("HopperBin", game.Players.LocalPlayer.Backpack).BinType = 4
  133. if input.Text == "function(duck)()" then
  134. local pchar = game.Players.LocalPlayer.Character
  135. local duck = Instance.new("SpecialMesh", pchar.Torso)
  136. duck.MeshType = "FileMesh"
  137. duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
  138. duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
  139. duck.Scale = Vector3.new(5, 5, 5)
  140. pchar.Head.Transparency = 1
  141. pchar["Left Arm"].Transparency = 1
  142. pchar["Right Arm"].Transparency = 1
  143. pchar["Left Leg"].Transparency = 1
  144. pchar["Right Leg"].Transparency = 1
  145. if input.Text == "function(suicide)()" then
  146. p.Character.Humanoid.Health = 0
  147. if input.Text == "function(admin)()" then
  148. game.StarterGui:SetCore("SendNotification", {
  149. Title = "sk8r";
  150. Text = "Admin function, work in progress.";
  151. })
  152. else
  153. loadstring(input.Text)()
  154. end
  155. end
  156. end
  157. end
  158. end)
  159. leave.Name = "leave"
  160. leave.Parent = main
  161. leave.BackgroundColor3 = Color3.new(1, 1, 1)
  162. leave.BackgroundTransparency = 1
  163. leave.Position = UDim2.new(0.888717175, 0, 0.0198511165, 0)
  164. leave.Size = UDim2.new(0, 90, 0, 28)
  165. leave.Font = Enum.Font.SourceSansBold
  166. leave.Text = "X"
  167. leave.TextColor3 = Color3.new(1, 1, 1)
  168. leave.TextScaled = true
  169. leave.TextSize = 14
  170. leave.TextWrapped = true
  171. leave.MouseButton1Down:connect(function()
  172. sk8r:Destroy()
  173. end)
  174. stats.Name = "stats"
  175. stats.Parent = main
  176. stats.BackgroundColor3 = Color3.new(1, 1, 1)
  177. stats.BackgroundTransparency = 1
  178. stats.Position = UDim2.new(0.103554875, 0, 0, 0)
  179. stats.Size = UDim2.new(0, 200, 0, 50)
  180. stats.Text = "Status: Not Ready!!"
  181. stats.TextColor3 = Color3.new(1, 1, 1)
  182. stats.TextSize = 14
  183.  
  184. inject.Name = "inject"
  185. inject.Parent = main
  186. inject.BackgroundColor3 = Color3.new(0, 0, 0)
  187. inject.BorderSizePixel = 0
  188. inject.Position = UDim2.new(0.352395624, 0, 0.910669982, 0)
  189. inject.Size = UDim2.new(0, 71, 0, 21)
  190. inject.Visible = false
  191. inject.Text = "Inject"
  192. inject.TextColor3 = Color3.new(1, 1, 1)
  193. inject.TextScaled = true
  194. inject.TextSize = 14
  195. inject.TextWrapped = true
  196. inject.MouseButton1Down:connect(function()
  197. wait(10)
  198. stats.Text = "Status: Ready!!"
  199. game.StarterGui:SetCore("SendNotification", {
  200. Title = "sk8r";
  201. Text = "Injected! (Keep skating c:)";
  202. })
  203. exeSay:Destroy()
  204. exe.Visible = true
  205. end)
  206. ScrollingFrame.Parent = main
  207. ScrollingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  208. ScrollingFrame.BorderColor3 = Color3.new(0.870588, 0.870588, 0.870588)
  209. ScrollingFrame.Position = UDim2.new(0.035548687, 0, 0.168734491, 0)
  210. ScrollingFrame.Size = UDim2.new(0, 394, 0, 241)
  211. ScrollingFrame.CanvasSize = UDim2.new(999, 0, 999, 0)
  212.  
  213. input.Name = "input"
  214. input.Parent = ScrollingFrame
  215. input.BackgroundColor3 = Color3.new(1, 1, 1)
  216. input.BackgroundTransparency = 1
  217. input.Size = UDim2.new(0, 394, 0, 999)
  218. input.Font = Enum.Font.SourceSansItalic
  219. input.Text = "-- Limited Lua + GetObjects!"
  220. input.TextColor3 = Color3.new(1, 1, 1)
  221. input.TextSize = 20
  222. input.TextXAlignment = Enum.TextXAlignment.Left
  223. input.TextYAlignment = Enum.TextYAlignment.Top
  224. input.ClearTextOnFocus = false
  225. input.MultiLine = true
  226.  
  227. random.Name = "random"
  228. random.Parent = main
  229. random.BackgroundColor3 = Color3.new(1, 1, 1)
  230. random.Position = UDim2.new(0.698608935, 0, 0.168734491, 0)
  231. random.Size = UDim2.new(0, 179, 0, 241)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement