0lf3_

2 Tower Of Hell Scripts

Sep 4th, 2022
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. -- Toh Scripts
  2.  
  3. -- 1. Godmode
  4.  
  5. game.Players.LocalPlayer.Character.KillScript:Remove()
  6. game.StarterGui:SetCore("SendNotification", {Title="Tower Of Hell"; Text="God Mode Activated"; Duration=5;})
  7.  
  8.  
  9. -- 2. Tp + Click to teleport
  10.  
  11. local ScreenGui = Instance.new("ScreenGui")
  12. local main = Instance.new("Frame")
  13. local TextLabel = Instance.new("TextLabel")
  14. local Frame = Instance.new("Frame")
  15. local INFJUMP = Instance.new("TextButton")
  16. local TextLabel_2 = Instance.new("TextLabel")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. main.Name = "main"
  23. main.Parent = ScreenGui
  24. main.Active = true
  25. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. main.BorderSizePixel = 0
  27. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  28. main.Size = UDim2.new(0, 146, 0, 28)
  29. main.Active = true
  30. main.Draggable = false
  31.  
  32. TextLabel.Parent = main
  33. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  34. TextLabel.BorderSizePixel = 0
  35. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  36. TextLabel.Font = Enum.Font.SciFi
  37. TextLabel.Text = "Misc"
  38. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. TextLabel.TextSize = 17.000
  40. TextLabel.TextWrapped = true
  41.  
  42. Frame.Parent = main
  43. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  44. Frame.BorderSizePixel = 0
  45. Frame.Position = UDim2.new(0, 0, 1, 0)
  46. Frame.Size = UDim2.new(0, 146, 0, 61)
  47.  
  48. INFJUMP.Name = "INFJUMP"
  49. INFJUMP.Parent = main
  50. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  51. INFJUMP.BorderSizePixel = 0
  52. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  53. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  54. INFJUMP.Font = Enum.Font.SourceSans
  55. INFJUMP.Text = ""
  56. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. INFJUMP.TextSize = 14.000
  58. INFJUMP.MouseButton1Down:connect(function()
  59. local Player = game:GetService'Players'.LocalPlayer;
  60. local UIS = game:GetService'UserInputService';
  61.  
  62. _G.JumpHeight = 50;
  63.  
  64. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  65.  
  66. UIS.InputBegan:connect(function(UserInput)
  67. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  68. Action(Player.Character.Humanoid, function(self)
  69. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  70. Action(self.Parent.HumanoidRootPart, function(self)
  71. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  72. end)
  73. end
  74. end)
  75. end
  76. end)
  77. end)
  78.  
  79. TextLabel_2.Parent = main
  80. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  81. TextLabel_2.BorderSizePixel = 0
  82. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  83. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  84. TextLabel_2.Font = Enum.Font.SciFi
  85. TextLabel_2.Text = "Inf jump"
  86. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. TextLabel_2.TextSize = 17.000
  88. TextLabel_2.TextWrapped = true
  89.  
  90. -- Scripts:
  91.  
  92. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  93. local script = Instance.new('LocalScript', INFJUMP)
  94.  
  95. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  96.  
  97. counter = 0
  98.  
  99. while wait(0.1)do
  100. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  101.  
  102. counter = counter + 0.01
  103. end
  104. end
  105.  
  106.  
  107.  
  108. local Plr = game:GetService("Players").LocalPlayer
  109. local Mouse = Plr:GetMouse()
  110.  
  111. Mouse.Button1Down:connect(
  112. function()
  113. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then
  114. return
  115. end
  116. if not Mouse.Target then
  117. return
  118. end
  119. Plr.Character:MoveTo(Mouse.Hit.p)
  120. end
  121. )
Add Comment
Please, Sign In to add comment