Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local P = Instance.new("ScreenGui")
- local Title = Instance.new("TextLabel")
- local Main = Instance.new("Frame")
- local hook = Instance.new("TextButton")
- local kill = Instance.new("TextButton")
- local togg = Instance.new("TextButton")
- P.Name = "P"
- P.Parent = game.CoreGui
- P.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Title.Name = "Title"
- Title.Parent = P
- Title.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
- Title.BorderSizePixel = 0
- Title.Position = UDim2.new(0.434853375, 0, 0.177892953, 0)
- Title.Size = UDim2.new(0, 246, 0, 50)
- Title.Font = Enum.Font.SourceSans
- Title.Text = "Tower Of Hell"
- Title.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255)
- Title.TextSize = 26
- Title.Draggable = true
- Title.Active = true
- Main.Name = "Main"
- Main.Parent = Title
- Main.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
- Main.BorderSizePixel = 0
- Main.ClipsDescendants = true
- Main.Position = UDim2.new(0, 0, 0.998731673, 0)
- Main.Size = UDim2.new(0, 246, 0, 244)
- hook.Name = "hook"
- hook.Parent = Main
- hook.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
- hook.BorderSizePixel = 0
- hook.Position = UDim2.new(0.0934959352, 0, 0.0491803288, 0)
- hook.Size = UDim2.new(0, 199, 0, 34)
- hook.Font = Enum.Font.SourceSans
- hook.Text = "Hoook"
- hook.TextColor3 = Color3.new(1, 1, 1)
- hook.TextSize = 20
- hook.MouseButton1Click:connect(function()
- --- hook
- local to = game:GetService("ReplicatedStorage").Gear.hook:Clone()
- to.Parent = game.Players.LocalPlayer.Backpack
- end)
- kill.Name = "kill"
- kill.Parent = Main
- kill.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
- kill.BorderSizePixel = 0
- kill.Position = UDim2.new(0.0934959352, 0, 0.286885262, 0)
- kill.Size = UDim2.new(0, 199, 0, 34)
- kill.Font = Enum.Font.SourceSans
- kill.Text = "Remove Kill Parts"
- kill.TextColor3 = Color3.new(1, 1, 1)
- kill.TextSize = 20
- kill.MouseButton1Click:connect(function()
- for i, v in pairs(game.Workspace:GetDescendants())do
- if v.Name == "kills" then
- v:Destroy()
- end
- end
- end)
- togg.Name = "togg"
- togg.Parent = Title
- togg.BackgroundColor3 = Color3.new(1, 1, 1)
- togg.BackgroundTransparency = 1
- togg.BorderSizePixel = 0
- togg.Position = UDim2.new(0.813992977, 0, 0.178369775, 0)
- togg.Rotation = -90
- togg.Size = UDim2.new(0, 44, 0, 31)
- togg.Font = Enum.Font.SourceSans
- togg.Text = "<"
- togg.TextColor3 = Color3.new(0.917647, 0.917647, 0.917647)
- togg.TextSize = 34
- togg.MouseButton1Click:Connect(function()
- if tog == false then
- tog = true
- togg.Rotation = 0
- Main:TweenSize(UDim2.new(0, 246,0, 0),"Out","Sine",.4)
- else
- tog = false
- togg.Rotation = -90
- Main:TweenSize(UDim2.new(0, 246,0, 244),"Out","Quad",.6)
- end
- end)
- for i,v in pairs (game.Players.LocalPlayer.StarterGui.P)do
- if v.Name == "P" then
- v:Destroy()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement