Advertisement
Ben_Scripts343

Tower of hell

Jun 1st, 2021
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1.  
  2. local P = Instance.new("ScreenGui")
  3. local Title = Instance.new("TextLabel")
  4. local Main = Instance.new("Frame")
  5. local hook = Instance.new("TextButton")
  6. local kill = Instance.new("TextButton")
  7. local togg = Instance.new("TextButton")
  8.  
  9. P.Name = "P"
  10. P.Parent = game.CoreGui
  11. P.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Title.Name = "Title"
  14. Title.Parent = P
  15. Title.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  16. Title.BorderSizePixel = 0
  17. Title.Position = UDim2.new(0.434853375, 0, 0.177892953, 0)
  18. Title.Size = UDim2.new(0, 246, 0, 50)
  19. Title.Font = Enum.Font.SourceSans
  20. Title.Text = "Tower Of Hell"
  21. Title.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255)
  22. Title.TextSize = 26
  23. Title.Draggable = true
  24. Title.Active = true
  25.  
  26. Main.Name = "Main"
  27. Main.Parent = Title
  28. Main.BackgroundColor3 = Color3.new(0.470588, 0.470588, 0.470588)
  29. Main.BorderSizePixel = 0
  30. Main.ClipsDescendants = true
  31. Main.Position = UDim2.new(0, 0, 0.998731673, 0)
  32. Main.Size = UDim2.new(0, 246, 0, 244)
  33.  
  34.  
  35. hook.Name = "hook"
  36. hook.Parent = Main
  37. hook.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  38. hook.BorderSizePixel = 0
  39. hook.Position = UDim2.new(0.0934959352, 0, 0.0491803288, 0)
  40. hook.Size = UDim2.new(0, 199, 0, 34)
  41. hook.Font = Enum.Font.SourceSans
  42. hook.Text = "Hoook"
  43. hook.TextColor3 = Color3.new(1, 1, 1)
  44. hook.TextSize = 20
  45. hook.MouseButton1Click:connect(function()
  46. --- hook
  47.  
  48. local to = game:GetService("ReplicatedStorage").Gear.hook:Clone()
  49.  
  50. to.Parent = game.Players.LocalPlayer.Backpack
  51. end)
  52.  
  53. kill.Name = "kill"
  54. kill.Parent = Main
  55. kill.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  56. kill.BorderSizePixel = 0
  57. kill.Position = UDim2.new(0.0934959352, 0, 0.286885262, 0)
  58. kill.Size = UDim2.new(0, 199, 0, 34)
  59. kill.Font = Enum.Font.SourceSans
  60. kill.Text = "Remove Kill Parts"
  61. kill.TextColor3 = Color3.new(1, 1, 1)
  62. kill.TextSize = 20
  63. kill.MouseButton1Click:connect(function()
  64. for i, v in pairs(game.Workspace:GetDescendants())do
  65. if v.Name == "kills" then
  66. v:Destroy()
  67. end
  68. end
  69.  
  70. end)
  71.  
  72. togg.Name = "togg"
  73. togg.Parent = Title
  74. togg.BackgroundColor3 = Color3.new(1, 1, 1)
  75. togg.BackgroundTransparency = 1
  76. togg.BorderSizePixel = 0
  77. togg.Position = UDim2.new(0.813992977, 0, 0.178369775, 0)
  78. togg.Rotation = -90
  79. togg.Size = UDim2.new(0, 44, 0, 31)
  80. togg.Font = Enum.Font.SourceSans
  81. togg.Text = "<"
  82. togg.TextColor3 = Color3.new(0.917647, 0.917647, 0.917647)
  83. togg.TextSize = 34
  84.  
  85.  
  86. togg.MouseButton1Click:Connect(function()
  87. if tog == false then
  88. tog = true
  89. togg.Rotation = 0
  90. Main:TweenSize(UDim2.new(0, 246,0, 0),"Out","Sine",.4)
  91. else
  92. tog = false
  93. togg.Rotation = -90
  94. Main:TweenSize(UDim2.new(0, 246,0, 244),"Out","Quad",.6)
  95. end
  96. end)
  97.  
  98. for i,v in pairs (game.Players.LocalPlayer.StarterGui.P)do
  99. if v.Name == "P" then
  100. v:Destroy()
  101. end
  102.  
  103. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement