Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Menu = Instance.new("Frame")
- local GUIname = Instance.new("TextLabel")
- local CreditsAndDiscord = Instance.new("TextLabel")
- local Speed = Instance.new("TextButton")
- local Comingsoon = Instance.new("TextButton")
- local InfJump = Instance.new("TextButton")
- local ComingSoon = Instance.new("TextButton")
- local JumpPower = Instance.new("TextButton")
- local ChatTroll = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Menu.Name = "Menu"
- Menu.Parent = ScreenGui
- Menu.BackgroundColor3 = Color3.fromRGB(172, 60, 170)
- Menu.Position = UDim2.new(0.0277372263, 0, 0.0224839393, 0)
- Menu.Size = UDim2.new(0, 414, 0, 287)
- GUIname.Name = "GUI name"
- GUIname.Parent = Menu
- GUIname.BackgroundColor3 = Color3.fromRGB(245, 128, 255)
- GUIname.BorderColor3 = Color3.fromRGB(172, 60, 170)
- GUIname.Size = UDim2.new(0, 414, 0, 50)
- GUIname.Font = Enum.Font.SourceSans
- GUIname.Text = "Treacherous Tower GUI"
- GUIname.TextColor3 = Color3.fromRGB(0, 0, 0)
- GUIname.TextSize = 40.000
- CreditsAndDiscord.Name = "Credits And Discord"
- CreditsAndDiscord.Parent = Menu
- CreditsAndDiscord.BackgroundColor3 = Color3.fromRGB(245, 128, 255)
- CreditsAndDiscord.BorderColor3 = Color3.fromRGB(172, 60, 170)
- CreditsAndDiscord.Position = UDim2.new(0, 0, 0.82362318, 0)
- CreditsAndDiscord.Size = UDim2.new(0, 414, 0, 50)
- CreditsAndDiscord.Font = Enum.Font.SourceSans
- CreditsAndDiscord.Text = "Join Our Discord: http://discord.gg/6kR7TAD - Made by OliHello#8986"
- CreditsAndDiscord.TextColor3 = Color3.fromRGB(0, 0, 0)
- CreditsAndDiscord.TextSize = 16.000
- Speed.Name = "Speed"
- Speed.Parent = Menu
- Speed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Speed.Position = UDim2.new(0, 0, 0.257839739, 0)
- Speed.Size = UDim2.new(0, 114, 0, 50)
- Speed.Font = Enum.Font.SourceSans
- Speed.Text = "Speed"
- Speed.TextColor3 = Color3.fromRGB(0, 0, 0)
- Speed.TextSize = 14.000
- Speed.MouseButton1Down:connect(function()
- local walkspeed = 75
- local bodypos = Instance.new("BodyPosition",game.Players.LocalPlayer.Character.HumanoidRootPart)
- bodypos.maxForce = Vector3.new(12500,12500,12500)
- spawn(function()
- game:GetService("RunService").RenderStepped:connect(function()
- wait()
- if game.Players.LocalPlayer.Character.Humanoid.FloorMaterial == Enum.Material.Air then
- bodypos.Parent = game.Players.LocalPlayer.Character
- game:GetService("RunService").RenderStepped:Wait()
- else
- game:GetService("RunService").RenderStepped:Wait()
- bodypos.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- end
- end)
- end)
- spawn(function()
- game:GetService("RunService").RenderStepped:connect(function()
- game:GetService("RunService").RenderStepped:Wait()
- bodypos.Position = Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X+game.Players.LocalPlayer.Character.Humanoid.MoveDirection.X*(1+walkspeed*0.05*5.4),game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y,game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z+game.Players.LocalPlayer.Character.Humanoid.MoveDirection.Z*(1+walkspeed*0.05*5.4))
- end)
- end)
- end)
- Comingsoon.Name = "Coming soon"
- Comingsoon.Parent = Menu
- Comingsoon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Comingsoon.Position = UDim2.new(0, 0, 0.567944229, 0)
- Comingsoon.Size = UDim2.new(0, 114, 0, 50)
- Comingsoon.Font = Enum.Font.SourceSans
- Comingsoon.Text = "(COMING SOON"
- Comingsoon.TextColor3 = Color3.fromRGB(0, 0, 0)
- Comingsoon.TextSize = 14.000
- InfJump.Name = "Inf Jump"
- InfJump.Parent = Menu
- InfJump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- InfJump.Position = UDim2.new(0.38164252, 0, 0.25783971, 0)
- InfJump.Size = UDim2.new(0, 114, 0, 50)
- InfJump.Font = Enum.Font.SourceSans
- InfJump.Text = "Inf Jump"
- InfJump.TextColor3 = Color3.fromRGB(0, 0, 0)
- InfJump.TextSize = 14.000
- InfJump.MouseButton1Down:connect(function()
- -- //~ F to toggle ~\ --
- --I have no idea who made this
- _G.infinjump = true
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- Mouse.KeyDown:connect(function(k)
- if _G.infinjump then
- if k:byte() == 32 then
- Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
- Humanoid:ChangeState("Jumping")
- wait(0.1)
- Humanoid:ChangeState("Seated")
- end
- end
- end)
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- Mouse.KeyDown:connect(function(k)
- k = k:lower()
- if k == "f" then
- if _G.infinjump == true then
- _G.infinjump = false
- else
- _G.infinjump = true
- end
- end
- end)
- end)
- ComingSoon.Name = "Coming Soon"
- ComingSoon.Parent = Menu
- ComingSoon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ComingSoon.Position = UDim2.new(0.38164252, 0, 0.567944229, 0)
- ComingSoon.Size = UDim2.new(0, 114, 0, 50)
- ComingSoon.Font = Enum.Font.SourceSans
- ComingSoon.Text = "(COMING SOON)"
- ComingSoon.TextColor3 = Color3.fromRGB(0, 0, 0)
- ComingSoon.TextSize = 14.000
- JumpPower.Name = "Jump Power"
- JumpPower.Parent = Menu
- JumpPower.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- JumpPower.Position = UDim2.new(0.724637687, 0, 0.25783971, 0)
- JumpPower.Size = UDim2.new(0, 114, 0, 50)
- JumpPower.Font = Enum.Font.SourceSans
- JumpPower.Text = "Jump Power"
- JumpPower.TextColor3 = Color3.fromRGB(0, 0, 0)
- JumpPower.TextSize = 14.000
- JumpPower.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 115
- end)
- ChatTroll.Name = "ChatTroll"
- ChatTroll.Parent = Menu
- ChatTroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ChatTroll.Position = UDim2.new(0.724637687, 0, 0.567944229, 0)
- ChatTroll.Size = UDim2.new(0, 114, 0, 50)
- ChatTroll.Font = Enum.Font.SourceSans
- ChatTroll.Text = "Chat Troll"
- ChatTroll.TextColor3 = Color3.fromRGB(0, 0, 0)
- ChatTroll.TextSize = 14.000
- ChatTroll.MouseButton1Down:connect(function()
- count=0;stopped=true;local a=game.Players:GetPlayers()game.Players.LocalPlayer.Chatted:Connect(function(b)if b=="/e stop"then stopped=true elseif b=="/e start"then stopped=false end end)for c=1,#a do a[c].Chatted:connect(function(d)if stopped==false then if a[c].Name==game.Players.LocalPlayer.Name then count=count+1;print("Revoked request to log your chat("..count..").")else game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("".."["..a[c].Name.."]".." "..d,"All")end end end)end
- end)
Add Comment
Please, Sign In to add comment