Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local GUI = Instance.new("Frame")
- local BAR = Instance.new("Frame")
- local minibar = Instance.new("Frame")
- local fly = Instance.new("TextButton")
- local noclip = Instance.new("TextButton")
- local speed = Instance.new("TextButton")
- local btool = Instance.new("TextButton")
- local weapon = Instance.new("TextButton")
- local MEME = Instance.new("TextButton")
- local line = Instance.new("Frame")
- local line2 = Instance.new("Frame")
- local Sqare = Instance.new("Frame")
- local line3 = Instance.new("Frame")
- local line4 = Instance.new("Frame")
- -- Properties
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- GUI.Name = "GUI"
- GUI.Parent = ScreenGui
- GUI.BackgroundColor3 = Color3.new(1, 1, 1)
- GUI.BorderSizePixel = 0
- GUI.Position = UDim2.new(0.452149779, 0, 0.0532994866, 0)
- GUI.Size = UDim2.new(0, 384, 0, 265)
- GUI.Visible = true
- BAR.Name = "BAR"
- BAR.Parent = GUI
- BAR.BackgroundColor3 = Color3.new(1, 0, 0)
- BAR.BorderSizePixel = 0
- BAR.Size = UDim2.new(0, 384, 0, 33)
- minibar.Name = "minibar"
- minibar.Parent = GUI
- minibar.BackgroundColor3 = Color3.new(1, 0.717647, 0)
- minibar.BorderSizePixel = 0
- minibar.Position = UDim2.new(0, 0, 0.124528304, 0)
- minibar.Size = UDim2.new(0, 384, 0, 6)
- fly.Name = "fly"
- fly.Parent = GUI
- fly.BackgroundColor3 = Color3.new(1, 1, 1)
- fly.Position = UDim2.new(0.046875, 0, 0.203773588, 0)
- fly.Size = UDim2.new(0, 94, 0, 50)
- fly.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- fly.Font = Enum.Font.SourceSans
- fly.Text = "날자"
- fly.TextColor3 = Color3.new(0, 0, 0)
- fly.TextSize = 14
- fly.MouseButton1Down:connect(function()
- repeat wait()
- until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
- local mouse = game.Players.LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game.Players.LocalPlayer
- local torso = plr.Character.Torso
- local flying = true
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 50
- local speed = 0
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.5+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "e" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- Fly()
- end)
- noclip.Name = "noclip"
- noclip.Parent = GUI
- noclip.BackgroundColor3 = Color3.new(1, 1, 1)
- noclip.Position = UDim2.new(0.046875, 0, 0.437735856, 0)
- noclip.Size = UDim2.new(0, 94, 0, 50)
- noclip.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- noclip.Font = Enum.Font.SourceSans
- noclip.Text = "벽통과"
- noclip.TextColor3 = Color3.new(0, 0, 0)
- noclip.TextSize = 14
- noclip.MouseButton1Down:connect(function()
- wait(2)
- nam = game.Players.LocalPlayer.Name
- coroutine.wrap(function()
- while wait() do
- for a, b in pairs(workspace[nam]:GetChildren()) do
- if b:FindFirstChild('Handle') then
- b.Handle.CanCollide = false
- end
- end
- end
- end)()
- game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function(asd)
- delay(0, function()
- if asd.Name ~= 'OutputGUI' then
- asd:Destroy()
- end
- end)
- end)
- game:GetService('RunService').Stepped:connect(function()
- workspace[nam].Torso.CanCollide = false
- workspace[nam].Head.CanCollide = false
- end)
- workspace[nam].Torso.Changed:connect(function()
- workspace[nam].Torso.CanCollide = false
- workspace[nam].Head.CanCollide = false
- end)
- end)
- speed.Name = "speed"
- speed.Parent = GUI
- speed.BackgroundColor3 = Color3.new(1, 1, 1)
- speed.Position = UDim2.new(0.046875, 0, 0.679245293, 0)
- speed.Size = UDim2.new(0, 94, 0, 50)
- speed.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- speed.Font = Enum.Font.SourceSans
- speed.Text = "속도업!"
- speed.TextColor3 = Color3.new(0, 0, 0)
- speed.TextSize = 14
- speed.MouseButton1Down:connect(function()
- local Player=game.Players.LocalPlayer
- local Speed=200
- local Hum=Player.Character:FindFirstChild("Humanoid")
- if Hum==nil then return end
- Hum.WalkSpeed=Speed
- end)
- btool.Name = "btool"
- btool.Parent = GUI
- btool.BackgroundColor3 = Color3.new(1, 1, 1)
- btool.Position = UDim2.new(0.359375, 0, 0.203773588, 0)
- btool.Size = UDim2.new(0, 94, 0, 50)
- btool.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- btool.Font = Enum.Font.SourceSans
- btool.Text = "관리자툴"
- btool.TextColor3 = Color3.new(0, 0, 0)
- btool.TextSize = 14
- btool.MouseButton1Down:connect(function()
- for i, p in pairs(game.Players:GetChildren()) do
- local a = Instance.new("HopperBin")
- a.BinType = "GameTool"
- a.Parent = p.Backpack
- local a = Instance.new("HopperBin")
- a.BinType = "Clone"
- a.Parent = p.Backpack
- local a = Instance.new("HopperBin")
- a.BinType = "Hammer"
- a.Parent = p.Backpack
- end
- end)
- weapon.Name = "weapon"
- weapon.Parent = GUI
- weapon.BackgroundColor3 = Color3.new(1, 1, 1)
- weapon.Position = UDim2.new(0.359375, 0, 0.437735856, 0)
- weapon.Size = UDim2.new(0, 94, 0, 50)
- weapon.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- weapon.Font = Enum.Font.SourceSans
- weapon.Text = "무기"
- weapon.TextColor3 = Color3.new(0, 0, 0)
- weapon.TextSize = 14
- MEME.Name = "MEME"
- MEME.Parent = GUI
- MEME.BackgroundColor3 = Color3.new(1, 1, 1)
- MEME.Position = UDim2.new(0.359375, 0, 0.679245293, 0)
- MEME.Size = UDim2.new(0, 94, 0, 50)
- MEME.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
- MEME.Font = Enum.Font.SourceSans
- MEME.Text = "밈들"
- MEME.TextColor3 = Color3.new(0, 0, 0)
- MEME.TextSize = 14
- MEME.MouseButton1Down:connect(function()
- Memes = {
- 47594659,
- 342697845,
- 74142203,
- 60298055,
- 48989071,
- 63175216,
- 63186465,
- 45120559,
- 62079221,
- 48258623,
- 62677682,
- 63174888,
- 47595647,
- 62830600,
- 53646377,
- 62677045,
- 48260066,
- 47596170,
- 48293007,
- 53645378,
- 48290678,
- 53646388,
- 45031979,
- 74885351,
- 278201073,
- }
- Player = game.Players.LocalPlayer
- repeat wait() until Player.Character
- local Character = Player.Character
- MEME = 47594659
- MAX = #Memes
- AT = 1
- local Billboard = Instance.new("BillboardGui", Character.Head)
- Image = Instance.new("ImageLabel", Billboard)
- Billboard.AlwaysOnTop = true
- Billboard.Adornee = Character.Head
- Billboard.Size = UDim2.new(1, 0, 1,0)
- Image.BackgroundTransparency = 1
- Image.Position = UDim2.new(-2, 0,-2, 0)
- Image.Size = UDim2.new(5, 0, 4, 0)
- s = Instance.new("ScreenGui", Player.PlayerGui)
- local f = Instance.new("Frame", s)
- local b = Instance.new("TextButton", f)
- il = Instance.new("ImageLabel", f)
- f.Position = UDim2.new(0.8, 0, 0.6, 0)
- f.Size = UDim2.new(0.2, 0, 0.3, 0)
- b.Position = UDim2.new(0, 0, 0.9, 0)
- b.Size = UDim2.new(1, 0, 0.1, 0)
- b.Style = "RobloxRoundDropdownButton"
- b.Font = "Legacy"
- b.Text = "Next > "
- il.Size = UDim2.new(1, 0, 0.9, 0)
- il.Image = "rbxassetid://"..MEME
- b.MouseButton1Down:connect(function()
- MEME = Memes[AT]
- if AT >= MAX then
- AT = 1
- else
- AT = AT+1
- end
- end)
- coroutine.wrap(function()
- repeat
- il.Image = "rbxassetid://"..MEME
- Image.Image = "rbxassetid://"..MEME
- wait()
- until Player.Character.Humanoid.Health == 0
- end)()
- end)
- line.Name = "line"
- line.Parent = GUI
- line.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
- line.BorderSizePixel = 0
- line.Position = UDim2.new(0.768229187, 0, 0.147169814, 0)
- line.Size = UDim2.new(0, 14, 0, 85)
- line2.Name = "line2"
- line2.Parent = GUI
- line2.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
- line2.BorderSizePixel = 0
- line2.Position = UDim2.new(0.830729187, 0, 0.147169814, 0)
- line2.Size = UDim2.new(0, 14, 0, 85)
- Sqare.Name = "Sqare"
- Sqare.Parent = GUI
- Sqare.BackgroundColor3 = Color3.new(1, 0.682353, 0.0431373)
- Sqare.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
- Sqare.BorderSizePixel = 0
- Sqare.Position = UDim2.new(0.734375, 0, 0.437735856, 0)
- Sqare.Size = UDim2.new(0, 65, 0, 72)
- line3.Name = "line3"
- line3.Parent = GUI
- line3.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
- line3.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
- line3.BorderSizePixel = 0
- line3.Position = UDim2.new(0.768229187, 0, 0.709433973, 0)
- line3.Size = UDim2.new(0, 14, 0, 77)
- line4.Name = "line4"
- line4.Parent = GUI
- line4.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
- line4.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
- line4.BorderSizePixel = 0
- line4.Position = UDim2.new(0.830729187, 0, 0.709433973, 0)
- line4.Size = UDim2.new(0, 14, 0, 77)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement