Advertisement
Guest User

⚓️ Roblox Titanic MAYHEM GUI

a guest
Oct 1st, 2018
6,281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.CoreGui
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  13. Frame.BorderSizePixel = 0
  14. Frame.Size = UDim2.new(0, 0, 0, 0)
  15.  
  16. TextLabel.Parent = ScreenGui
  17. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  18. TextLabel.BorderSizePixel = 0
  19. TextLabel.Position = UDim2.new(0.111553803, 0, 0.009422848, 0)
  20. TextLabel.Size = UDim2.new(0, 1, 0, 1)
  21. TextLabel.Font = Enum.Font.SourceSansLight
  22. TextLabel.Text = "newgui"
  23. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  24. TextLabel.TextSize = 10
  25.  
  26. TextButton.Parent = ScreenGui
  27. TextButton.BackgroundColor3 = Color3.new(1, 0.843137, 0.843137)
  28. TextButton.BorderSizePixel = 0
  29. TextButton.Position = UDim2.new(0.111553788, 0, 0.0871613622, 0)
  30. TextButton.Size = UDim2.new(0, 200, 0, 50)
  31. TextButton.Font = Enum.Font.SourceSansLight
  32. TextButton.Text = "BEGIN"
  33. TextButton.TextColor3 = Color3.new(1, 1, 1)
  34. TextButton.TextSize = 40
  35. -- Scripts:
  36.  
  37. TextButton.MouseButton1Down:connect(function()
  38. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  39. game.ReplicatedStorage.Remotes_Gameplay.Ragdoll:FireServer(false, v.Character.LowerTorso.Root);
  40. end;
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement