Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local LevisTitanSimulatorGUiv1 = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- local ImageLabel = Instance.new("ImageLabel")
- local MainFrame = Instance.new("Frame")
- local BringPlayersButton = Instance.new("TextButton")
- local SpamPunchButton = Instance.new("TextButton")
- local CloseButton = Instance.new("TextButton")
- local GlossEffect = Instance.new("ImageLabel")
- LevisTitanSimulatorGUiv1.Name = "LevisTitanSimulatorGUiv1"
- LevisTitanSimulatorGUiv1.Parent = game.Players.LocalPlayer.PlayerGui
- TextLabel.Parent = LevisTitanSimulatorGUiv1
- TextLabel.Active = true
- TextLabel.BackgroundColor3 = Color3.new(0, 1, 1)
- TextLabel.BackgroundTransparency = 0.5
- TextLabel.BorderSizePixel = 0
- TextLabel.Draggable = true
- TextLabel.Position = UDim2.new(0.5, -150, 0.5, -50)
- TextLabel.Size = UDim2.new(0, 280, 0, 20)
- TextLabel.Font = Enum.Font.Arial
- TextLabel.FontSize = Enum.FontSize.Size18
- TextLabel.Text = "Titan Simulator GUI v1"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 18
- ImageLabel.Parent = TextLabel
- ImageLabel.BackgroundTransparency = 1
- ImageLabel.Size = UDim2.new(1, 0, 0.5, 0)
- ImageLabel.ZIndex = 2
- ImageLabel.Image = "rbxasset://textures/BWGradient.png"
- ImageLabel.ImageTransparency = 0.5
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = TextLabel
- MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- MainFrame.BackgroundTransparency = 0.30000001192093
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0, 0, 0, 20)
- MainFrame.Size = UDim2.new(0, 300, 0, 100)
- BringPlayersButton.Name = "BringPlayersButton"
- BringPlayersButton.Parent = MainFrame
- BringPlayersButton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
- BringPlayersButton.BackgroundTransparency = 0.60000002384186
- BringPlayersButton.Size = UDim2.new(1, 0, 0.5, 0)
- BringPlayersButton.Font = Enum.Font.Arial
- BringPlayersButton.FontSize = Enum.FontSize.Size14
- BringPlayersButton.Text = "Bring bodies to you (kill for Power)"
- BringPlayersButton.TextColor3 = Color3.new(1, 1, 1)
- BringPlayersButton.TextSize = 14
- SpamPunchButton.Name = "SpamPunchButton"
- SpamPunchButton.Parent = MainFrame
- SpamPunchButton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
- SpamPunchButton.BackgroundTransparency = 0.60000002384186
- SpamPunchButton.Position = UDim2.new(0, 0, 0.5, 0)
- SpamPunchButton.Size = UDim2.new(1, 0, 0.5, 0)
- SpamPunchButton.Font = Enum.Font.Arial
- SpamPunchButton.FontSize = Enum.FontSize.Size14
- SpamPunchButton.Text = "Spam Punch (by CharWar)"
- SpamPunchButton.TextColor3 = Color3.new(1, 1, 1)
- SpamPunchButton.TextSize = 14
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = TextLabel
- CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
- CloseButton.BackgroundTransparency = 0.5
- CloseButton.BorderSizePixel = 0
- CloseButton.Position = UDim2.new(0, 280, 0, 0)
- CloseButton.Size = UDim2.new(0, 20, 0, 20)
- CloseButton.Font = Enum.Font.ArialBold
- CloseButton.FontSize = Enum.FontSize.Size18
- CloseButton.Text = "X"
- CloseButton.TextColor3 = Color3.new(1, 1, 1)
- CloseButton.TextSize = 18
- GlossEffect.Name = "GlossEffect"
- GlossEffect.Parent = CloseButton
- GlossEffect.BackgroundTransparency = 1
- GlossEffect.Size = UDim2.new(1, 0, 0.5, 0)
- GlossEffect.ZIndex = 2
- GlossEffect.Image = "rbxasset://textures/BWGradient.png"
- GlossEffect.ImageTransparency = 0.5
- CloseButton.MouseButton1Down:connect(function()
- LevisTitanSimulatorGUiv1:remove()
- end)
- SpamPunchButton.MouseButton1Down:connect(function()
- while wait() do
- local Punch = game.Players.LocalPlayer.Backpack.Punch
- Punch.Parent = game.Players.LocalPlayer.Character
- game.Players.LocalPlayer.Character.Punch:Activate()
- wait(0.4)
- game.Players.LocalPlayer.Character.Punch:Activate()
- local PunchTwo = game.Players.LocalPlayer.Character.Punch
- PunchTwo.Parent = game.Players.LocalPlayer.Backpack
- end
- end)
- BringPlayersButton.MouseButton1Down:connect(function()
- local model = game.Players
- local children = model:GetChildren()
- for i =1, #children do
- if children[i] ~= nil then
- children[i].Character.UpperTorso.Anchored = true
- children[i].Character.UpperTorso.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- game.Players.LocalPlayer.Character.UpperTorso.Anchored = false
- game.Players.LocalPlayer.Character.UpperTorso.CFrame = children[i].Character.UpperTorso.CFrame
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement