Advertisement
RobloxSBloader

Untitled

Dec 6th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. Player = game.Players.toooony.PlayerGui
  2.  
  3. Screen = Instance.new("ScreenGui", Player)
  4. Kill = Instance.new("Frame", Screen)
  5. Button = Instance.new("TextButton", Kill)
  6. Typer = Instance.new("TextBox", Kill)
  7.  
  8. Button.BackgroundColor3 = Color3.new(225, 0, 0)
  9. Button.Size = UDim2.new(0, 60, 0, 30)
  10. Button.Text = "stab:"
  11. Button.FontSize = "Size11"
  12.  
  13. Kill.Name = "Kill"
  14.  
  15. Typer.BackgroundColor3 = Color3.new(225, 0, 0)
  16. Typer.Size = UDim2.new(0, 150, 0, 25)
  17. Typer.Text = "PlayerName Here"
  18. Typer.Position = UDim2.new(0, 51, 0, 0)
  19. Typer.BackgroundTransparency = 0.4
  20.  
  21. local m = Instance.new("Message")
  22. m.Parent = game.Workspace
  23. m.Text = ":C"
  24. m:Destroy()
  25.  
  26. function Ok()
  27. if game.Players:findFirstChild(Typer.Text) ~= nil then
  28. G = game.Players:findFirstChild(Typer.Text)
  29. G.Character:BreakJoints()
  30. A = Instance.new("Hint", Player)
  31. A.Text = (Typer.Text.. " Has been succesfully stabbed")
  32. wait(4)
  33. HintRemove = Screen.Parent:GetChildren()
  34. for i=1, #HintRemove do
  35. if HintRemove[i].ClassName == "Hint" then
  36. HintRemove[i] :Remove()
  37. else
  38. M = Instance.new("Hint", Player)
  39. M.Text = (Typer.Text.. " That Player Does Not Exist")
  40. wait(4)
  41. RemoveHint = Screen.Parent:GetChildren()
  42. for i=1, #RemoveHint do
  43. if RemoveHint[i].ClassName == "Hint" then
  44. RemoveHint[i] :Remove()
  45. end
  46. end
  47. end
  48. end
  49. end
  50. end
  51. Button.MouseButton1Down:connect(Ok)
  52.  
  53.  
  54. Kick = Instance.new("Frame", Screen)
  55. Button2 = Instance.new("TextButton", Kick)
  56. Typer2 = Instance.new("TextBox", Kick)
  57.  
  58. Kick.Name = "Kick"
  59.  
  60. Button2.BackgroundColor3 = Color3.new(255, 0, 0)
  61. Button2.Text = "Kick:"
  62. Button2.FontSize = "Size11"
  63. Button2.Position = UDim2.new(0, 0, 0, 26)
  64. Button2.Size = UDim2.new(0, 60, 0, 30)
  65.  
  66. Typer2.BackgroundColor3 = Color3.new(255, 0, 0)
  67. Typer2.BackgroundTransparency = 0.4
  68. Typer2.Position = UDim2.new(0, 51, 0, 26)
  69. Typer2.Size = UDim2.new(0, 150, 0, 26)
  70. Typer2.Text = "PlayerName Here"
  71.  
  72. function Ok2()
  73. if game.Players:findFirstChild(Typer2.Text) ~= nil then
  74. G = game.Players:findFirstChild(Typer2.Text)
  75. G :Remove()
  76. M2 = Instance.new("Hint", Player.PlayerGui)
  77. M2.Text = (Typer2.Text.. " Has Succesfuly Been Kicked")
  78. wait(4)
  79. M2 :Remove()
  80. else
  81. M2Error = Instance.new("Hint", Player.PlayerGui)
  82. M2Error.Text = (Typer2.Text.. " Does Not Exist")
  83. wait(4)
  84. M2Error :Remove()
  85. end
  86. end
  87. Button2.MouseButton1Down:connect(Ok2)
  88.  
  89. Message = Instance.new("Frame", Screen)
  90. Button3 = Instance.new("TextButton", Message)
  91. Typer3 = Instance.new("TextBox", Message)
  92.  
  93. Message.Name = "Shout"
  94.  
  95. Typer3.BackgroundColor3 = Color3.new(225, 0, 0)
  96. Typer3.BackgroundTransparency = 0.4
  97. Typer3.Position = UDim2.new(0, 51, 0, 53)
  98. Typer3.Size = UDim2.new(0, 150, 0, 26)
  99. Typer3.Text = "Type Message Here"
  100.  
  101. Button3.BackgroundColor3 = Color3.new(255, 0, 0)
  102. Button3.Position = UDim2.new(0, 0, 0, 53)
  103. Button3.Size = UDim2.new(0, 50, 0, 26)
  104. Button3.Text = "SHout:"
  105.  
  106. function Ok3()
  107. if Typer3.Text == "Type Message Here" then
  108. Error3 = Instance.new("Hint", Screen.Parent.Parent.PlayerGui)
  109. Error3.Text = "Please Type A message to SHout"
  110. wait(3)
  111. ErrorRemove = Screen.Parent.Parent.PlayerGui:GetChildren()
  112. for i=1, #ErrorRemove do
  113. if ErrorRemove[i].ClassName == "Hint" then
  114. ErrorRemove[i] :Remove()
  115. end
  116. end
  117. else
  118. Message = Instance.new("Message", game.Workspace)
  119. Message.Text = (Typer3.Text)
  120. RemoveMessage3 = game.Workspace:GetChildren()
  121. wait(3)
  122. for i=1, #RemoveMessage3 do
  123. if RemoveMessage3[i].ClassName == "Message" then
  124. RemoveMessage3[i] :Remove()
  125. end
  126. end
  127. end
  128. end
  129. Button3.MouseButton1Down:connect(Ok3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement