Upscalefanatic3

Survivor(beta) GUI

Jul 12th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui", game.CoreGui )
  2. local Frame = Instance.new("Frame", game.CoreGui.ScreenGui)
  3. local Survivor = Instance.new("TextLabel", game.CoreGui.ScreenGui.Frame)
  4. local Spam = Instance.new("TextBox", game.CoreGui.ScreenGui.Frame)
  5. local Enter = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
  6. local Coin = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
  7. local Idols = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
  8.  
  9. --Properties
  10.  
  11.  
  12. Frame.Active = true
  13. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  14. Frame.BackgroundTransparency = 0.3
  15. Frame.Draggable = true
  16. Frame.Position = UDim2.new(0, 341, 0, 41)
  17. Frame.Size = UDim2.new(0, 330, 0, 410)
  18.  
  19. Survivor.Name = "Survivor Gui"
  20.  
  21. Survivor.Parent = Frame
  22. Survivor.BackgroundColor3 = Color3.new(0, 0, 0)
  23. Survivor.BackgroundTransparency = 0.5
  24. Survivor.Position = UDim2.new(0, 90, 0, 0)
  25. Survivor.Size = UDim2.new(0, 150, 0, 50)
  26. Survivor.Font = Enum.Font.SciFi
  27. Survivor.FontSize = Enum.FontSize.Size24
  28. Survivor.Text = "Survivor Gui"
  29. Survivor.TextColor3 = Color3.new(97, 0, 0)
  30. Survivor.TextSize = 24
  31.  
  32. Spam.Name = "Spam Chat"
  33.  
  34. Spam.Name = "Spam"
  35.  
  36. Spam.Parent = Frame
  37. Spam.BackgroundColor3 = Color3.new(0, 0, 0)
  38. Spam.BackgroundTransparency = 0.5
  39. Spam.Position = UDim2.new(0, 90, 0, 106)
  40. Spam.Size = UDim2.new(0, 155, 0, 50)
  41. Spam.Font = Enum.Font.SciFi
  42. Spam.FontSize = Enum.FontSize.Size18
  43. Spam.Text = "Chat Spam"
  44. Spam.TextColor3 = Color3.new(97, 0, 0)
  45. Spam.TextSize = 18
  46.  
  47. Enter.Name = "Enter"
  48.  
  49. Enter.Parent = Frame
  50. Enter.BackgroundColor3 = Color3.new(0, 0, 0)
  51. Enter.BackgroundTransparency = 0.5
  52. Enter.Position = UDim2.new(0, 250, 0, 106)
  53. Enter.Size = UDim2.new(0, 50, 0, 50)
  54. Enter.Font = Enum.Font.SciFi
  55. Enter.FontSize = Enum.FontSize.Size18
  56. Enter.Text = "Enter"
  57. Enter.TextColor3 = Color3.new(97, 0, 0)
  58. Enter.TextSize = 18
  59.  
  60. Coin.Name = "Coin"
  61.  
  62. Coin.Parent = Frame
  63. Coin.BackgroundColor3 = Color3.new(0, 0, 0)
  64. Coin.BackgroundTransparency = 0.3
  65. Coin.Position = UDim2.new(0, 90, 0, 210)
  66. Coin.Size = UDim2.new(0, 155, 0, 50)
  67. Coin.Font = Enum.Font.SciFi
  68. Coin.FontSize = Enum.FontSize.Size18
  69. Coin.Text = "Coin Tp"
  70. Coin.TextColor3 = Color3.new(97, 0, 0)
  71. Coin.TextSize = 18
  72.  
  73.  
  74. Idols.Name = "Idols"
  75.  
  76. Idols.Parent = Frame
  77. Idols.BackgroundColor3 = Color3.new(0, 0, 0)
  78. Idols.BackgroundTransparency = 0.5
  79. Idols.Position = UDim2.new(0, 90, 0, 314)
  80. Idols.Size = UDim2.new(0, 155, 0, 50)
  81. Idols.Font = Enum.Font.SciFi
  82. Idols.FontSize = Enum.FontSize.Size18
  83. Idols.Text = "Idols Tp"
  84. Idols.TextColor3 = Color3.new(97, 0, 0)
  85. Idols.TextSize = 18
  86.  
  87.  
  88. Enter.MouseButton1Click:connect(function()
  89.  
  90. amount_of_msgs = 5
  91.  
  92. for i = 1, amount_of_msgs do
  93. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Spam.Text, "All")
  94. end
  95. end)
  96.  
  97. Coin.MouseButton1Click:connect(function()
  98. while wait(.25) do
  99. for _, v in pairs(workspace.Misc.Coins:GetChildren()) do
  100. for _, q in pairs (v:GetChildren()) do
  101. q.CFrame = CFrame.new(workspace[game:GetService("Players").LocalPlayer.Name].Torso.Position)
  102. end
  103. end
  104. end
  105. end)
  106.  
  107. Idols.MouseButton1Click:connect(function()
  108. while wait (5) do
  109. for _, v in pairs(workspace.Misc.Idols:GetChildren()) do
  110. v.CFrame = CFrame.new(workspace[game:GetService("Players").LocalPlayer.Name].Torso.Position)
  111. end
  112. end
  113. end)
Add Comment
Please, Sign In to add comment