Advertisement
Henryhulk

TITAN SIMULATOR GUI

Jan 31st, 2018
27,077
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.40 KB | None | 0 0
  1. -- Made by Henryhulk discord: Henryhulk#1896
  2.  
  3. local titan = Instance.new("ScreenGui")
  4. local gui = Instance.new("Frame")
  5. local name = Instance.new("TextLabel")
  6. local credits = Instance.new("TextLabel")
  7. local spampunch = Instance.new("TextButton")
  8. local bringbodies = Instance.new("TextButton")
  9. local bringorbs = Instance.new("TextButton")
  10.  
  11. -- script
  12.  
  13. titan.Name = "titan"
  14. titan.Parent = game.CoreGui
  15.  
  16. gui.Name = "gui"
  17. gui.Parent = titan
  18. gui.Active = true
  19. gui.BackgroundColor3 = Color3.new(0.631373, 1, 0.54902)
  20. gui.BorderSizePixel = 4
  21. gui.Draggable = true
  22. gui.Position = UDim2.new(0.73456794, 0, 0.586314082, 0)
  23. gui.Size = UDim2.new(0, 335, 0, 256)
  24.  
  25. name.Name = "name"
  26. name.Parent = gui
  27. name.BackgroundColor3 = Color3.new(0, 0, 0)
  28. name.Size = UDim2.new(0, 335, 0, 50)
  29. name.Font = Enum.Font.SourceSans
  30. name.Text = "T I T A N S I M U L A T O R"
  31. name.TextColor3 = Color3.new(1, 1, 1)
  32. name.TextSize = 14
  33.  
  34. credits.Name = "credits"
  35. credits.Parent = gui
  36. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  37. credits.Position = UDim2.new(0, 0, 0.90234375, 0)
  38. credits.Size = UDim2.new(0, 335, 0, 25)
  39. credits.Font = Enum.Font.SourceSans
  40. credits.Text = "Made By Henryhulk#1896"
  41. credits.TextColor3 = Color3.new(1, 1, 1)
  42. credits.TextSize = 14
  43.  
  44. spampunch.Name = "spampunch"
  45. spampunch.Parent = gui
  46. spampunch.BackgroundColor3 = Color3.new(0, 0, 0)
  47. spampunch.Position = UDim2.new(0.0626865625, 0, 0.26953125, 0)
  48. spampunch.Size = UDim2.new(0, 134, 0, 50)
  49. spampunch.Font = Enum.Font.SourceSans
  50. spampunch.Text = "Spam Punch"
  51. spampunch.TextColor3 = Color3.new(1, 1, 1)
  52. spampunch.TextSize = 14
  53.  
  54. spampunch.MouseButton1Down:connect(function()
  55. while wait() do
  56. local Punch = game.Players.LocalPlayer.Backpack.Punch
  57. Punch.Parent = game.Players.LocalPlayer.Character
  58. game.Players.LocalPlayer.Character.Punch:Activate()
  59. wait(0.4)
  60. game.Players.LocalPlayer.Character.Punch:Activate()
  61. local PunchTwo = game.Players.LocalPlayer.Character.Punch
  62. PunchTwo.Parent = game.Players.LocalPlayer.Backpack
  63. end
  64. end)
  65.  
  66.  
  67. bringbodies.Name = "bringbodies"
  68. bringbodies.Parent = gui
  69. bringbodies.BackgroundColor3 = Color3.new(0, 0, 0)
  70. bringbodies.Position = UDim2.new(0.540298522, 0, 0.26953125, 0)
  71. bringbodies.Size = UDim2.new(0, 134, 0, 50)
  72. bringbodies.Font = Enum.Font.SourceSans
  73. bringbodies.Text = "Bring Bodies"
  74. bringbodies.TextColor3 = Color3.new(1, 1, 1)
  75. bringbodies.TextSize = 14
  76.  
  77. bringbodies.MouseButton1Down:connect(function()
  78. local model = game.Players
  79. local children = model:GetChildren()
  80. for i =1, #children do
  81. if children[i] ~= nil then
  82. children[i].Character.UpperTorso.Anchored = true
  83. children[i].Character.UpperTorso.CFrame =  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  84. game.Players.LocalPlayer.Character.UpperTorso.Anchored = false
  85. game.Players.LocalPlayer.Character.UpperTorso.CFrame = children[i].Character.UpperTorso.CFrame
  86.     end
  87. end
  88. end)
  89.  
  90. bringorbs.Name = "bringorbs"
  91. bringorbs.Parent = gui
  92. bringorbs.BackgroundColor3 = Color3.new(0, 0, 0)
  93. bringorbs.Position = UDim2.new(0.268656731, 0, 0.58203125, 0)
  94. bringorbs.Size = UDim2.new(0, 155, 0, 50)
  95. bringorbs.Font = Enum.Font.SourceSans
  96. bringorbs.Text = "Bring power orbs to you"
  97. bringorbs.TextColor3 = Color3.new(1, 1, 1)
  98. bringorbs.TextSize = 14
  99.  
  100. bringorbs.MouseButton1Down:connect(function()
  101. for i,v in pairs(game.Workspace:GetChildren()) do
  102. if v.Name == "Drop" then
  103. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  104. else
  105. end
  106. end
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement