Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by Sant_Potato
- local plr = game:GetService('Players').LocalPlayer.Character
- local ScreenGui = Instance.new("ScreenGui")
- local OpenFrame = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local BeautyA = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local BeautyA_2 = Instance.new("Frame")
- local TextLabel_2 = Instance.new("TextLabel")
- local AIM = Instance.new("TextButton")
- local CTP = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- local MI = Instance.new("TextButton")
- local MVIP = Instance.new("TextButton")
- local Plate = Instance.new("TextButton")
- local Shop = Instance.new("TextButton")
- local VIP = Instance.new("TextButton")
- local Walls = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- OpenFrame.Name = "OpenFrame"
- OpenFrame.Parent = ScreenGui
- OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- OpenFrame.Position = UDim2.new(0, 0, 0.54422605, 0)
- OpenFrame.Selectable = true
- OpenFrame.Size = UDim2.new(0, 117, 0, 53)
- Open.Name = "Open"
- Open.Parent = OpenFrame
- Open.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- Open.Position = UDim2.new(0.00854700897, 0, 0, 0)
- Open.Size = UDim2.new(0, 116, 0, 52)
- Open.Font = Enum.Font.SourceSansItalic
- Open.Text = "Open"
- Open.TextColor3 = Color3.fromRGB(0, 0, 0)
- Open.TextSize = 40.000
- Open.MouseButton1Down:connect(function()
- Frame.Visible = true
- OpenFrame.Visible = false
- end)
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- Frame.BackgroundTransparency = 0.250
- Frame.Position = UDim2.new(0.396668673, 0, 0.224815726, 0)
- Frame.Size = UDim2.new(0, 502, 0, 287)
- Frame.Draggable = true
- Frame.Visible = false
- BeautyA.Name = "BeautyA"
- BeautyA.Parent = Frame
- BeautyA.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- BeautyA.BackgroundTransparency = 0.200
- BeautyA.Size = UDim2.new(0, 502, 0, 37)
- TextLabel.Parent = BeautyA
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.0199203193, 0, 0, 0)
- TextLabel.Size = UDim2.new(0, 502, 0, 37)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "SkyWars Gui!"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 40.000
- TextLabel.Draggable = true
- BeautyA_2.Name = "BeautyA"
- BeautyA_2.Parent = Frame
- BeautyA_2.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- BeautyA_2.BackgroundTransparency = 0.200
- BeautyA_2.Position = UDim2.new(0, 0, 0.87108016, 0)
- BeautyA_2.Size = UDim2.new(0, 502, 0, 37)
- TextLabel_2.Parent = BeautyA_2
- TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.BackgroundTransparency = 1.000
- TextLabel_2.Size = UDim2.new(0, 502, 0, 37)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "Made By Allan - Exploits & Hacks on YT"
- TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel_2.TextSize = 31.000
- TextLabel_2.Draggable = true
- AIM.Name = "AIM"
- AIM.Parent = Frame
- AIM.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- AIM.BackgroundTransparency = 0.200
- AIM.Position = UDim2.new(0.379655898, 0, 0.175971001, 0)
- AIM.Size = UDim2.new(0, 140, 0, 48)
- AIM.Font = Enum.Font.SourceSansSemibold
- AIM.Text = "Teleport Players to you!"
- AIM.TextColor3 = Color3.fromRGB(0, 0, 0)
- AIM.TextScaled = true
- AIM.TextSize = 29.000
- AIM.TextWrapped = true
- AIM.MouseButton1Down:connect(function()
- for i , v in pairs(game.Players:GetChildren()) do
- if v ~= game.Players.LocalPlayer and v.Character ~= nil and v.Character:FindFirstChild("HumanoidRootPart") then
- v.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * 3
- v.Character.HumanoidRootPart.Anchored = true
- end
- end
- end)
- CTP.Name = "CTP"
- CTP.Parent = Frame
- CTP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- CTP.BackgroundTransparency = 0.200
- CTP.Position = UDim2.new(0.719589233, 0, 0.412819207, 0)
- CTP.Size = UDim2.new(0, 140, 0, 48)
- CTP.Font = Enum.Font.SourceSansSemibold
- CTP.Text = "Ctrl+Tp"
- CTP.TextColor3 = Color3.fromRGB(0, 0, 0)
- CTP.TextScaled = true
- CTP.TextSize = 29.000
- CTP.TextWrapped = true
- CTP.MouseButton1Down:connect(function()
- local Player = game.Players.LocalPlayer
- local Mouse = Player:GetMouse()
- local UserInputService = game:GetService('UserInputService')
- local HoldingControl = false
- Mouse.Button1Down:connect(function()
- if HoldingControl then
- Player.Character:MoveTo(Mouse.Hit.p)
- end
- end)
- UserInputService.InputBegan:connect(function(Input, Processed)
- if Input.UserInputType == Enum.UserInputType.Keyboard then
- if Input.KeyCode == Enum.KeyCode.LeftControl then
- HoldingControl = true
- elseif Input.KeyCode == Enum.KeyCode.RightControl then
- HoldingControl = true
- end
- end
- end)
- UserInputService.InputEnded:connect(function(Input, Processed)
- if Input.UserInputType == Enum.UserInputType.Keyboard then
- if Input.KeyCode == Enum.KeyCode.LeftControl then
- HoldingControl = false
- elseif Input.KeyCode == Enum.KeyCode.RightControl then
- HoldingControl = false
- end
- end
- end)
- end)
- Close.Name = "Close"
- Close.Parent = Frame
- Close.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- Close.BackgroundTransparency = 0.200
- Close.Position = UDim2.new(0.86038202, 0, -0.00166513026, 0)
- Close.Size = UDim2.new(0, 70, 0, 37)
- Close.Font = Enum.Font.SourceSansSemibold
- Close.Text = "X"
- Close.TextColor3 = Color3.fromRGB(0, 0, 0)
- Close.TextScaled = true
- Close.TextSize = 29.000
- Close.TextWrapped = true
- Close.MouseButton1Down:connect(function()
- Frame.Visible = false
- OpenFrame.Visible = true
- end)
- MI.Name = "MI"
- MI.Parent = Frame
- MI.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- MI.BackgroundTransparency = 0.200
- MI.Position = UDim2.new(0.719589233, 0, 0.175971001, 0)
- MI.Size = UDim2.new(0, 140, 0, 48)
- MI.Font = Enum.Font.SourceSansSemibold
- MI.Text = "MiddleIsland"
- MI.TextColor3 = Color3.fromRGB(0, 0, 0)
- MI.TextScaled = true
- MI.TextSize = 29.000
- MI.TextWrapped = true
- MI.MouseButton1Down:connect(function()
- local plr = game:GetService('Players').LocalPlayer.Character
- plr.HumanoidRootPart.CFrame = CFrame.new(-8, 164, 12)
- end)
- MVIP.Name = "MVIP"
- MVIP.Parent = Frame
- MVIP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- MVIP.BackgroundTransparency = 0.200
- MVIP.Position = UDim2.new(-0.00173771381, 0, 0.175971001, 0)
- MVIP.Size = UDim2.new(0, 140, 0, 48)
- MVIP.Font = Enum.Font.SourceSansSemibold
- MVIP.Text = "Mega Vip"
- MVIP.TextColor3 = Color3.fromRGB(0, 0, 0)
- MVIP.TextSize = 34.000
- MVIP.MouseButton1Down:connect(function()
- local plr = game:GetService('Players').LocalPlayer.Character
- plr.HumanoidRootPart.CFrame = CFrame.new(12, 264, 79)
- end)
- Plate.Name = "Plate"
- Plate.Parent = Frame
- Plate.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- Plate.BackgroundTransparency = 0.200
- Plate.Position = UDim2.new(-0.00173771381, 0, 0.649667382, 0)
- Plate.Size = UDim2.new(0, 214, 0, 48)
- Plate.Font = Enum.Font.SourceSansSemibold
- Plate.Text = "Delete all KillPlates"
- Plate.TextColor3 = Color3.fromRGB(0, 0, 0)
- Plate.TextScaled = true
- Plate.TextSize = 29.000
- Plate.TextWrapped = true
- Plate.MouseButton1Down:connect(function()
- game.workspace.Lobby.KillPlates:remove()
- end)
- Shop.Name = "Shop"
- Shop.Parent = Frame
- Shop.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- Shop.BackgroundTransparency = 0.200
- Shop.Position = UDim2.new(0.379655898, 0, 0.412819207, 0)
- Shop.Size = UDim2.new(0, 140, 0, 48)
- Shop.Font = Enum.Font.SourceSansSemibold
- Shop.Text = "Shop"
- Shop.TextColor3 = Color3.fromRGB(0, 0, 0)
- Shop.TextScaled = true
- Shop.TextSize = 29.000
- Shop.TextWrapped = true
- Shop.MouseButton1Down:connect(function()
- local plr = game:GetService('Players').LocalPlayer.Character
- plr.HumanoidRootPart.CFrame = CFrame.new(60, 260.5, 0)
- end)
- VIP.Name = "VIP"
- VIP.Parent = Frame
- VIP.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- VIP.BackgroundTransparency = 0.200
- VIP.Position = UDim2.new(-0.00173771381, 0, 0.412819207, 0)
- VIP.Size = UDim2.new(0, 140, 0, 48)
- VIP.Font = Enum.Font.SourceSansSemibold
- VIP.Text = "Vip"
- VIP.TextColor3 = Color3.fromRGB(0, 0, 0)
- VIP.TextSize = 34.000
- VIP.MouseButton1Down:connect(function()
- local plr = game:GetService('Players').LocalPlayer.Character
- plr.HumanoidRootPart.CFrame = CFrame.new(-11, 264, -79)
- end)
- Walls.Name = "Walls"
- Walls.Parent = Frame
- Walls.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
- Walls.BackgroundTransparency = 0.200
- Walls.Position = UDim2.new(0.456317842, 0, 0.649667382, 0)
- Walls.Size = UDim2.new(0, 260, 0, 48)
- Walls.Font = Enum.Font.SourceSansSemibold
- Walls.Text = "Delete all invisible walls"
- Walls.TextColor3 = Color3.fromRGB(0, 0, 0)
- Walls.TextScaled = true
- Walls.TextSize = 29.000
- Walls.TextWrapped = true
- Walls.MouseButton1Down:connect(function()
- game.workspace.Borders.InvisibleBorder:remove()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement