Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.59 KB | None | 0 0
  1. -- Objects
  2.  
  3. local PlazahaxV2 = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Tab = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local ChatSpam = Instance.new("TextButton")
  8. local Freecam = Instance.new("TextButton")
  9. local Train = Instance.new("TextButton")
  10. local ChatSpam_2 = Instance.new("TextButton")
  11. local OOB = Instance.new("TextButton")
  12. local Spawn = Instance.new("TextButton")
  13. local Exit = Instance.new("TextButton")
  14. local FerrisWheel = Instance.new("TextButton")
  15. local WaterSlider = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. PlazahaxV2.Name = "Plazahax V2"
  20. PlazahaxV2.Parent = game.StarterGui
  21.  
  22. Main.Name = "Main"
  23. Main.Parent = PlazahaxV2
  24. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  25. Main.BorderSizePixel = 0
  26. Main.Draggable = true
  27. Main.Position = UDim2.new(0.656000018, 0, 0.581907094, 0)
  28. Main.Size = UDim2.new(0, 469, 0, 162)
  29.  
  30. Tab.Name = "Tab"
  31. Tab.Parent = Main
  32. Tab.BackgroundColor3 = Color3.new(0.286275, 0.654902, 1)
  33. Tab.BorderSizePixel = 0
  34. Tab.Position = UDim2.new(-4.53670509e-06, 0, 0, 0)
  35. Tab.Size = UDim2.new(0, 469, 0, 40)
  36.  
  37. Title.Name = "Title"
  38. Title.Parent = Tab
  39. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  40. Title.BackgroundTransparency = 1
  41. Title.Position = UDim2.new(0.320895523, 0, 0.150000006, 0)
  42. Title.Size = UDim2.new(0, 168, 0, 28)
  43. Title.Font = Enum.Font.SourceSansLight
  44. Title.Text = "Plazahax V2"
  45. Title.TextColor3 = Color3.new(1, 1, 1)
  46. Title.TextScaled = true
  47. Title.TextSize = 14
  48. Title.TextWrapped = true
  49.  
  50. ChatSpam.Name = "ChatSpam"
  51. ChatSpam.Parent = Main
  52. ChatSpam.BackgroundColor3 = Color3.new(1, 1, 1)
  53. ChatSpam.Position = UDim2.new(0.056369938, 0, 0.300505072, 0)
  54. ChatSpam.Size = UDim2.new(0, 87, 0, 43)
  55. ChatSpam.Font = Enum.Font.SourceSans
  56. ChatSpam.Text = "Start Chat Spam"
  57. ChatSpam.TextSize = 14
  58. ChatSpam.MouseButton1Down:connect(function()
  59. local Spamming = false
  60.  
  61. if (Spamming == false) then
  62. Spamming = true
  63. while Spamming == true do
  64. game.ReplicatedStorage.ServerStats.CustomChat.ChattedIn:FireServer("Plazahax V2 FTW!!!!")
  65. end
  66. ChatSpam.Text = "Stop Chat Spam"
  67. else
  68. Spamming = false
  69. ChatSpam.Text = "Start Chat Spam"
  70. end
  71. end)
  72.  
  73. Freecam.Name = "Freecam"
  74. Freecam.Parent = Main
  75. Freecam.BackgroundColor3 = Color3.new(1, 1, 1)
  76. Freecam.Position = UDim2.new(0.289978683, 0, 0.30359149, 0)
  77. Freecam.Size = UDim2.new(0, 87, 0, 43)
  78. Freecam.Font = Enum.Font.SourceSans
  79. Freecam.Text = "Freecam"
  80. Freecam.TextSize = 14
  81. Freecam.MouseButton1Down:connect(function()
  82. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = (Vector3.new(10, 10, 10))
  83. end)
  84.  
  85. Train.Name = "Train"
  86. Train.Parent = Main
  87. Train.BackgroundColor3 = Color3.new(1, 1, 1)
  88. Train.Position = UDim2.new(0.523187578, 0, 0.30359149, 0)
  89. Train.Size = UDim2.new(0, 87, 0, 43)
  90. Train.Font = Enum.Font.SourceSans
  91. Train.Text = "Train TP"
  92. Train.TextSize = 14
  93. Train.MouseButton1Down:connect(function()
  94. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.TrainSystem.Train.Left.Part.CFra
  95. end)
  96.  
  97. ChatSpam_2.Name = "ChatSpam"
  98. ChatSpam_2.Parent = Main
  99. ChatSpam_2.BackgroundColor3 = Color3.new(1, 1, 1)
  100. ChatSpam_2.Position = UDim2.new(0.0562366247, 0, 0.656004429, 0)
  101. ChatSpam_2.Size = UDim2.new(0, 87, 0, 43)
  102. ChatSpam_2.Font = Enum.Font.SourceSans
  103. ChatSpam_2.Text = "Aegis Pistol"
  104. ChatSpam_2.TextSize = 14
  105. ChatSpam_2.MouseButton1Down:connect(function()
  106. game.ReplicatedStorage.ServerStats.TwitterCode:FireServer("Aegis")
  107. end)
  108.  
  109. OOB.Name = "OOB"
  110. OOB.Parent = Main
  111. OOB.BackgroundColor3 = Color3.new(1, 1, 1)
  112. OOB.Position = UDim2.new(0.29077822, 0, 0.656004548, 0)
  113. OOB.Size = UDim2.new(0, 87, 0, 43)
  114. OOB.Font = Enum.Font.SourceSans
  115. OOB.Text = "OOB TP"
  116. OOB.TextSize = 14
  117. OOB.MouseButton1Down:connect(function()
  118. game.Workspace.Sonaprev.HumanoidRootPart.CFrame = CFrame.new(278.23938, 35.3499985, -161.524582, 0.993594408, -1.64463855e-22, 0.113005072, 1.91364516e-22, 1, -2.272010283-22, -0.113005072, 2.47370826e-22, 0.99359440)
  119. end)
  120.  
  121. Spawn.Name = "Spawn"
  122. Spawn.Parent = Main
  123. Spawn.BackgroundColor3 = Color3.new(1, 1, 1)
  124. Spawn.Position = UDim2.new(0.740671575, 0, 0.30359146, 0)
  125. Spawn.Size = UDim2.new(0, 87, 0, 43)
  126. Spawn.Font = Enum.Font.SourceSans
  127. Spawn.Text = "Spawn"
  128. Spawn.TextSize = 14
  129. Spawn.MouseButton1Down:connect(function()
  130. game.Workspace.Sonaprev.HumanoidRootPart.CFrame = game.Workspace.MainSpawn.CFrame
  131. end)
  132.  
  133. Exit.Name = "Exit"
  134. Exit.Parent = Main
  135. Exit.BackgroundColor3 = Color3.new(1, 0, 0)
  136. Exit.Position = UDim2.new(0.944562912, 0, 0, 0)
  137. Exit.Size = UDim2.new(0, 26, 0, 21)
  138. Exit.Font = Enum.Font.SourceSans
  139. Exit.Text = "X"
  140. Exit.TextColor3 = Color3.new(1, 1, 1)
  141. Exit.TextSize = 14
  142. Exit.MouseButton1Down:connect(function()
  143. game.CoreGui.PlazahaxV2:Destroy()
  144. end)
  145.  
  146. FerrisWheel.Name = "FerrisWheel"
  147. FerrisWheel.Parent = Main
  148. FerrisWheel.BackgroundColor3 = Color3.new(1, 1, 1)
  149. FerrisWheel.Position = UDim2.new(0.523187637, 0, 0.656004548, 0)
  150. FerrisWheel.Size = UDim2.new(0, 87, 0, 43)
  151. FerrisWheel.Font = Enum.Font.SourceSans
  152. FerrisWheel.Text = "Ferris Weel"
  153. FerrisWheel.TextSize = 14
  154. FerrisWheel.MouseButton1Down:connect(function()
  155. game.Workspace.Sonaprev.HumanoidRootPart.CFrame = game.Workspace.FerrisWheel.Parts.Chairs.Chair.Main.CFrame
  156. end)
  157.  
  158. WaterSlider.Name = "WaterSlider"
  159. WaterSlider.Parent = Main
  160. WaterSlider.BackgroundColor3 = Color3.new(1, 1, 1)
  161. WaterSlider.Position = UDim2.new(0.740671635, 0, 0.656004548, 0)
  162. WaterSlider.Size = UDim2.new(0, 87, 0, 43)
  163. WaterSlider.Font = Enum.Font.SourceSans
  164. WaterSlider.Text = "Water Slide"
  165. WaterSlider.TextSize = 14
  166. WaterSlider.MouseButton1Down:connect(function()
  167. game.Workspace.Sonaprev.HumanoidRootPart.CFrame = game.Workspace.WaterSlide.Sit.CFrame
  168. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement