Facebook
From mihnea16, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 600
  1. local plr = game:GetService('Players').LocalPlayer.Character
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local OpenFrame = Instance.new("Frame")
  4. local Open = Instance.new("TextButton")
  5. local Frame = Instance.new("Frame")
  6. local BeautyA = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local BeautyA_2 = Instance.new("Frame")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local AIM = Instance.new("TextButton")
  11. local CTP = Instance.new("TextButton")
  12. local Close = Instance.new("TextButton")
  13. local MI = Instance.new("TextButton")
  14. local MVIP = Instance.new("TextButton")
  15. local Plate = Instance.new("TextButton")
  16. local Shop = Instance.new("TextButton")
  17. local VIP = Instance.new("TextButton")
  18. local Walls = Instance.new("TextButton")
  19.  
  20.  
  21. --Properties:
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26.  
  27.  
  28. OpenFrame.Name = "OpenFrame"
  29. OpenFrame.Parent = ScreenGui
  30. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  31. OpenFrame.Position = UDim2.new(0, 0, 0.54422605, 0)
  32. OpenFrame.Selectable = true
  33. OpenFrame.Size = UDim2.new(0, 117, 0, 53)
  34.  
  35.  
  36. Open.Name = "Open"
  37. Open.Parent = OpenFrame
  38. Open.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  39. Open.Position = UDim2.new(0.00854700897, 0, 0, 0)
  40. Open.Size = UDim2.new(0, 116, 0, 52)
  41. Open.Font = Enum.Font.SourceSansItalic
  42. Open.Text = "Open"
  43. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. Open.TextSize = 40.000
  45. Open.MouseButton1Down:connect(function()
  46. Frame.Visible = true
  47. OpenFrame.Visible = false
  48. end)
  49.  
  50. Frame.Parent = ScreenGui
  51. Frame.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  52. Frame.BackgroundTransparency = 0.250
  53. Frame.Position = UDim2.new(0.396668673, 0, 0.224815726, 0)
  54. Frame.Size = UDim2.new(0, 502, 0, 287)
  55. Frame.Draggable = true
  56. Frame.Visible = false
  57.  
  58. BeautyA.Name = "BeautyA"
  59. BeautyA.Parent = Frame
  60. BeautyA.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  61. BeautyA.BackgroundTransparency = 0.200
  62. BeautyA.Size = UDim2.new(0, 502, 0, 37)
  63.  
  64. TextLabel.Parent = BeautyA
  65. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. TextLabel.BackgroundTransparency = 1.000
  67. TextLabel.Position = UDim2.new(0.0199203193, 0, 0, 0)
  68. TextLabel.Size = UDim2.new(0, 502, 0, 37)
  69. TextLabel.Font = Enum.Font.SourceSans
  70. TextLabel.Text = "SkyWars Gui!"
  71. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. TextLabel.TextSize = 40.000
  73. TextLabel.Draggable = true
  74.  
  75.  
  76. BeautyA_2.Name = "BeautyA"
  77. BeautyA_2.Parent = Frame
  78. BeautyA_2.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  79. BeautyA_2.BackgroundTransparency = 0.200
  80. BeautyA_2.Position = UDim2.new(0, 0, 0.87108016, 0)
  81. BeautyA_2.Size = UDim2.new(0, 502, 0, 37)
  82.  
  83.  
  84. TextLabel_2.Parent = BeautyA_2
  85. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  86. TextLabel_2.BackgroundTransparency = 1.000
  87. TextLabel_2.Size = UDim2.new(0, 502, 0, 37)
  88. TextLabel_2.Font = Enum.Font.SourceSans
  89. TextLabel_2.Text = "Made By Allan - Exploits & Hacks on YT"
  90. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  91. TextLabel_2.TextSize = 31.000
  92. TextLabel_2.Draggable = true
  93.  
  94.  
  95. AIM.Name = "AIM"
  96. AIM.Parent = Frame
  97. AIM.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  98. AIM.BackgroundTransparency = 0.200
  99. AIM.Position = UDim2.new(0.379655898, 0, 0.175971001, 0)
  100. AIM.Size = UDim2.new(0, 140, 0, 48)
  101. AIM.Font = Enum.Font.SourceSansSemibold
  102. AIM.Text = "Teleport Players to you!"
  103. AIM.TextColor3 = Color3.fromRGB(0, 0, 0)
  104. AIM.TextScaled = true
  105. AIM.TextSize = 29.000
  106. AIM.TextWrapped = true
  107. AIM.MouseButton1Down:connect(function()
  108.     for i , v in pairs(game.Players:GetChildren()) do
  109.         if v ~= game.Players.LocalPlayer and v.Character ~= nil and v.Character:FindFirstChild("HumanoidRootPart") then
  110.             v.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  111.             v.Character.HumanoidRootPart.Anchored = true
  112.     end
  113.     end
  114. end)
  115.  
  116. CTP.Name = "CTP"
  117. CTP.Parent = Frame
  118. CTP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  119. CTP.BackgroundTransparency = 0.200
  120. CTP.Position = UDim2.new(0.719589233, 0, 0.412819207, 0)
  121. CTP.Size = UDim2.new(0, 140, 0, 48)
  122. CTP.Font = Enum.Font.SourceSansSemibold
  123. CTP.Text = "Ctrl+Tp"
  124. CTP.TextColor3 = Color3.fromRGB(0, 0, 0)
  125. CTP.TextScaled = true
  126. CTP.TextSize = 29.000
  127. CTP.TextWrapped = true
  128. CTP.MouseButton1Down:connect(function()
  129. local Player = game.Players.LocalPlayer
  130. local Mouse = Player:GetMouse()
  131. local UserInputService = game:GetService('UserInputService')
  132.  
  133. local HoldingControl = false
  134.  
  135. Mouse.Button1Down:connect(function()
  136. if HoldingControl then
  137. Player.Character:MoveTo(Mouse.Hit.p)
  138. end
  139. end)
  140.  
  141. UserInputService.InputBegan:connect(function(Input, Processed)
  142. if Input.UserInputType == Enum.UserInputType.Keyboard then
  143. if Input.KeyCode == Enum.KeyCode.LeftControl then
  144. HoldingControl = true
  145. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  146. HoldingControl = true
  147. end
  148. end
  149. end)
  150.  
  151. UserInputService.InputEnded:connect(function(Input, Processed)
  152. if Input.UserInputType == Enum.UserInputType.Keyboard then
  153. if Input.KeyCode == Enum.KeyCode.LeftControl then
  154. HoldingControl = false
  155. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  156. HoldingControl = false
  157. end
  158. end
  159. end)
  160. end)
  161.  
  162. Close.Name = "Close"
  163. Close.Parent = Frame
  164. Close.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  165. Close.BackgroundTransparency = 0.200
  166. Close.Position = UDim2.new(0.86038202, 0, -0.00166513026, 0)
  167. Close.Size = UDim2.new(0, 70, 0, 37)
  168. Close.Font = Enum.Font.SourceSansSemibold
  169. Close.Text = "X"
  170. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  171. Close.TextScaled = true
  172. Close.TextSize = 29.000
  173. Close.TextWrapped = true
  174. Close.MouseButton1Down:connect(function()
  175. Frame.Visible = false
  176. OpenFrame.Visible = true
  177. end)
  178.  
  179. MI.Name = "MI"
  180. MI.Parent = Frame
  181. MI.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  182. MI.BackgroundTransparency = 0.200
  183. MI.Position = UDim2.new(0.719589233, 0, 0.175971001, 0)
  184. MI.Size = UDim2.new(0, 140, 0, 48)
  185. MI.Font = Enum.Font.SourceSansSemibold
  186. MI.Text = "MiddleIsland"
  187. MI.TextColor3 = Color3.fromRGB(0, 0, 0)
  188. MI.TextScaled = true
  189. MI.TextSize = 29.000
  190. MI.TextWrapped = true
  191. MI.MouseButton1Down:connect(function()
  192. local plr = game:GetService('Players').LocalPlayer.Character
  193. plr.HumanoidRootPart.CFrame = CFrame.new(-8, 164, 12)
  194. end)
  195.  
  196.  
  197. MVIP.Name = "MVIP"
  198. MVIP.Parent = Frame
  199. MVIP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  200. MVIP.BackgroundTransparency = 0.200
  201. MVIP.Position = UDim2.new(-0.00173771381, 0, 0.175971001, 0)
  202. MVIP.Size = UDim2.new(0, 140, 0, 48)
  203. MVIP.Font = Enum.Font.SourceSansSemibold
  204. MVIP.Text = "Mega Vip"
  205. MVIP.TextColor3 = Color3.fromRGB(0, 0, 0)
  206. MVIP.TextSize = 34.000
  207. MVIP.MouseButton1Down:connect(function()
  208. local plr = game:GetService('Players').LocalPlayer.Character
  209. plr.HumanoidRootPart.CFrame = CFrame.new(12, 264, 79)
  210. end)
  211.  
  212. Plate.Name = "Plate"
  213. Plate.Parent = Frame
  214. Plate.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  215. Plate.BackgroundTransparency = 0.200
  216. Plate.Position = UDim2.new(-0.00173771381, 0, 0.649667382, 0)
  217. Plate.Size = UDim2.new(0, 214, 0, 48)
  218. Plate.Font = Enum.Font.SourceSansSemibold
  219. Plate.Text = "Delete all KillPlates"
  220. Plate.TextColor3 = Color3.fromRGB(0, 0, 0)
  221. Plate.TextScaled = true
  222. Plate.TextSize = 29.000
  223. Plate.TextWrapped = true
  224. Plate.MouseButton1Down:connect(function()
  225. game.workspace.Lobby.KillPlates:remove()
  226. end)
  227.  
  228. Shop.Name = "Shop"
  229. Shop.Parent = Frame
  230. Shop.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  231. Shop.BackgroundTransparency = 0.200
  232. Shop.Position = UDim2.new(0.379655898, 0, 0.412819207, 0)
  233. Shop.Size = UDim2.new(0, 140, 0, 48)
  234. Shop.Font = Enum.Font.SourceSansSemibold
  235. Shop.Text = "Shop"
  236. Shop.TextColor3 = Color3.fromRGB(0, 0, 0)
  237. Shop.TextScaled = true
  238. Shop.TextSize = 29.000
  239. Shop.TextWrapped = true
  240. Shop.MouseButton1Down:connect(function()
  241. local plr = game:GetService('Players').LocalPlayer.Character
  242. plr.HumanoidRootPart.CFrame = CFrame.new(60, 260.5, 0)
  243. end)
  244.  
  245.  
  246. VIP.Name = "VIP"
  247. VIP.Parent = Frame
  248. VIP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  249. VIP.BackgroundTransparency = 0.200
  250. VIP.Position = UDim2.new(-0.00173771381, 0, 0.412819207, 0)
  251. VIP.Size = UDim2.new(0, 140, 0, 48)
  252. VIP.Font = Enum.Font.SourceSansSemibold
  253. VIP.Text = "Vip"
  254. VIP.TextColor3 = Color3.fromRGB(0, 0, 0)
  255. VIP.TextSize = 34.000
  256. VIP.MouseButton1Down:connect(function()
  257. local plr = game:GetService('Players').LocalPlayer.Character
  258. plr.HumanoidRootPart.CFrame = CFrame.new(-11, 264, -79)
  259. end)
  260.  
  261.  
  262. Walls.Name = "Walls"
  263. Walls.Parent = Frame
  264. Walls.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  265. Walls.BackgroundTransparency = 0.200
  266. Walls.Position = UDim2.new(0.456317842, 0, 0.649667382, 0)
  267. Walls.Size = UDim2.new(0, 260, 0, 48)
  268. Walls.Font = Enum.Font.SourceSansSemibold
  269. Walls.Text = "Delete all invisible walls"
  270. Walls.TextColor3 = Color3.fromRGB(0, 0, 0)
  271. Walls.TextScaled = true
  272. Walls.TextSize = 29.000
  273. Walls.TextWrapped = true
  274. Walls.MouseButton1Down:connect(function()
  275. game.workspace.Borders.InvisibleBorder:remove()
  276. end)

Replies to super op skywars script-Roblox rss

Title Name Language When
Re: super op skywars script-Roblox Scorching Hamster text 1 Year ago.