Advertisement
LeviTheOtaku

Titan Simulator GUi v1

Oct 24th, 2017
1,088
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.24 KB | None | 0 0
  1. local LevisTitanSimulatorGUiv1 = Instance.new("ScreenGui")
  2. local TextLabel = Instance.new("TextLabel")
  3. local ImageLabel = Instance.new("ImageLabel")
  4. local MainFrame = Instance.new("Frame")
  5. local BringPlayersButton = Instance.new("TextButton")
  6. local SpamPunchButton = Instance.new("TextButton")
  7. local CloseButton = Instance.new("TextButton")
  8. local GlossEffect = Instance.new("ImageLabel")
  9. LevisTitanSimulatorGUiv1.Name = "LevisTitanSimulatorGUiv1"
  10. LevisTitanSimulatorGUiv1.Parent = game.Players.LocalPlayer.PlayerGui
  11. TextLabel.Parent = LevisTitanSimulatorGUiv1
  12. TextLabel.Active = true
  13. TextLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  14. TextLabel.BackgroundTransparency = 0.5
  15. TextLabel.BorderSizePixel = 0
  16. TextLabel.Draggable = true
  17. TextLabel.Position = UDim2.new(0.5, -150, 0.5, -50)
  18. TextLabel.Size = UDim2.new(0, 280, 0, 20)
  19. TextLabel.Font = Enum.Font.Arial
  20. TextLabel.FontSize = Enum.FontSize.Size18
  21. TextLabel.Text = "Titan Simulator GUI v1"
  22. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  23. TextLabel.TextSize = 18
  24. ImageLabel.Parent = TextLabel
  25. ImageLabel.BackgroundTransparency = 1
  26. ImageLabel.Size = UDim2.new(1, 0, 0.5, 0)
  27. ImageLabel.ZIndex = 2
  28. ImageLabel.Image = "rbxasset://textures/BWGradient.png"
  29. ImageLabel.ImageTransparency = 0.5
  30. MainFrame.Name = "MainFrame"
  31. MainFrame.Parent = TextLabel
  32. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  33. MainFrame.BackgroundTransparency = 0.30000001192093
  34. MainFrame.BorderSizePixel = 0
  35. MainFrame.Position = UDim2.new(0, 0, 0, 20)
  36. MainFrame.Size = UDim2.new(0, 300, 0, 100)
  37. BringPlayersButton.Name = "BringPlayersButton"
  38. BringPlayersButton.Parent = MainFrame
  39. BringPlayersButton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  40. BringPlayersButton.BackgroundTransparency = 0.60000002384186
  41. BringPlayersButton.Size = UDim2.new(1, 0, 0.5, 0)
  42. BringPlayersButton.Font = Enum.Font.Arial
  43. BringPlayersButton.FontSize = Enum.FontSize.Size14
  44. BringPlayersButton.Text = "Bring bodies to you (kill for Power)"
  45. BringPlayersButton.TextColor3 = Color3.new(1, 1, 1)
  46. BringPlayersButton.TextSize = 14
  47. SpamPunchButton.Name = "SpamPunchButton"
  48. SpamPunchButton.Parent = MainFrame
  49. SpamPunchButton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  50. SpamPunchButton.BackgroundTransparency = 0.60000002384186
  51. SpamPunchButton.Position = UDim2.new(0, 0, 0.5, 0)
  52. SpamPunchButton.Size = UDim2.new(1, 0, 0.5, 0)
  53. SpamPunchButton.Font = Enum.Font.Arial
  54. SpamPunchButton.FontSize = Enum.FontSize.Size14
  55. SpamPunchButton.Text = "Spam Punch (by CharWar)"
  56. SpamPunchButton.TextColor3 = Color3.new(1, 1, 1)
  57. SpamPunchButton.TextSize = 14
  58. CloseButton.Name = "CloseButton"
  59. CloseButton.Parent = TextLabel
  60. CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
  61. CloseButton.BackgroundTransparency = 0.5
  62. CloseButton.BorderSizePixel = 0
  63. CloseButton.Position = UDim2.new(0, 280, 0, 0)
  64. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  65. CloseButton.Font = Enum.Font.ArialBold
  66. CloseButton.FontSize = Enum.FontSize.Size18
  67. CloseButton.Text = "X"
  68. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  69. CloseButton.TextSize = 18
  70. GlossEffect.Name = "GlossEffect"
  71. GlossEffect.Parent = CloseButton
  72. GlossEffect.BackgroundTransparency = 1
  73. GlossEffect.Size = UDim2.new(1, 0, 0.5, 0)
  74. GlossEffect.ZIndex = 2
  75. GlossEffect.Image = "rbxasset://textures/BWGradient.png"
  76. GlossEffect.ImageTransparency = 0.5
  77.  
  78. CloseButton.MouseButton1Down:connect(function()
  79. LevisTitanSimulatorGUiv1:remove()
  80. end)
  81. SpamPunchButton.MouseButton1Down:connect(function()
  82. while wait() do
  83. local Punch = game.Players.LocalPlayer.Backpack.Punch
  84. Punch.Parent = game.Players.LocalPlayer.Character
  85. game.Players.LocalPlayer.Character.Punch:Activate()
  86. wait(0.4)
  87. game.Players.LocalPlayer.Character.Punch:Activate()
  88. local PunchTwo = game.Players.LocalPlayer.Character.Punch
  89. PunchTwo.Parent = game.Players.LocalPlayer.Backpack
  90. end
  91. end)
  92. BringPlayersButton.MouseButton1Down:connect(function()
  93. local model = game.Players
  94. local children = model:GetChildren()
  95. for i =1, #children do
  96. if children[i] ~= nil then
  97. children[i].Character.UpperTorso.Anchored = true
  98. children[i].Character.UpperTorso.CFrame =  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  99. game.Players.LocalPlayer.Character.UpperTorso.Anchored = false
  100. game.Players.LocalPlayer.Character.UpperTorso.CFrame = children[i].Character.UpperTorso.CFrame
  101.     end
  102. end
  103. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement