Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by Henryhulk discord: Henryhulk#1896
- local titan = Instance.new("ScreenGui")
- local gui = Instance.new("Frame")
- local name = Instance.new("TextLabel")
- local credits = Instance.new("TextLabel")
- local spampunch = Instance.new("TextButton")
- local bringbodies = Instance.new("TextButton")
- local bringorbs = Instance.new("TextButton")
- -- script
- titan.Name = "titan"
- titan.Parent = game.CoreGui
- gui.Name = "gui"
- gui.Parent = titan
- gui.Active = true
- gui.BackgroundColor3 = Color3.new(0.631373, 1, 0.54902)
- gui.BorderSizePixel = 4
- gui.Draggable = true
- gui.Position = UDim2.new(0.73456794, 0, 0.586314082, 0)
- gui.Size = UDim2.new(0, 335, 0, 256)
- name.Name = "name"
- name.Parent = gui
- name.BackgroundColor3 = Color3.new(0, 0, 0)
- name.Size = UDim2.new(0, 335, 0, 50)
- name.Font = Enum.Font.SourceSans
- name.Text = "T I T A N S I M U L A T O R"
- name.TextColor3 = Color3.new(1, 1, 1)
- name.TextSize = 14
- credits.Name = "credits"
- credits.Parent = gui
- credits.BackgroundColor3 = Color3.new(0, 0, 0)
- credits.Position = UDim2.new(0, 0, 0.90234375, 0)
- credits.Size = UDim2.new(0, 335, 0, 25)
- credits.Font = Enum.Font.SourceSans
- credits.Text = "Made By Henryhulk#1896"
- credits.TextColor3 = Color3.new(1, 1, 1)
- credits.TextSize = 14
- spampunch.Name = "spampunch"
- spampunch.Parent = gui
- spampunch.BackgroundColor3 = Color3.new(0, 0, 0)
- spampunch.Position = UDim2.new(0.0626865625, 0, 0.26953125, 0)
- spampunch.Size = UDim2.new(0, 134, 0, 50)
- spampunch.Font = Enum.Font.SourceSans
- spampunch.Text = "Spam Punch"
- spampunch.TextColor3 = Color3.new(1, 1, 1)
- spampunch.TextSize = 14
- spampunch.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)
- bringbodies.Name = "bringbodies"
- bringbodies.Parent = gui
- bringbodies.BackgroundColor3 = Color3.new(0, 0, 0)
- bringbodies.Position = UDim2.new(0.540298522, 0, 0.26953125, 0)
- bringbodies.Size = UDim2.new(0, 134, 0, 50)
- bringbodies.Font = Enum.Font.SourceSans
- bringbodies.Text = "Bring Bodies"
- bringbodies.TextColor3 = Color3.new(1, 1, 1)
- bringbodies.TextSize = 14
- bringbodies.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)
- bringorbs.Name = "bringorbs"
- bringorbs.Parent = gui
- bringorbs.BackgroundColor3 = Color3.new(0, 0, 0)
- bringorbs.Position = UDim2.new(0.268656731, 0, 0.58203125, 0)
- bringorbs.Size = UDim2.new(0, 155, 0, 50)
- bringorbs.Font = Enum.Font.SourceSans
- bringorbs.Text = "Bring power orbs to you"
- bringorbs.TextColor3 = Color3.new(1, 1, 1)
- bringorbs.TextSize = 14
- bringorbs.MouseButton1Down:connect(function()
- for i,v in pairs(game.Workspace:GetChildren()) do
- if v.Name == "Drop" then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- else
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement