Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui", game.CoreGui )
- local Frame = Instance.new("Frame", game.CoreGui.ScreenGui)
- local Survivor = Instance.new("TextLabel", game.CoreGui.ScreenGui.Frame)
- local Spam = Instance.new("TextBox", game.CoreGui.ScreenGui.Frame)
- local Enter = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
- local Coin = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
- local Idols = Instance.new("TextButton", game.CoreGui.ScreenGui.Frame)
- --Properties
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BackgroundTransparency = 0.3
- Frame.Draggable = true
- Frame.Position = UDim2.new(0, 341, 0, 41)
- Frame.Size = UDim2.new(0, 330, 0, 410)
- Survivor.Name = "Survivor Gui"
- Survivor.Parent = Frame
- Survivor.BackgroundColor3 = Color3.new(0, 0, 0)
- Survivor.BackgroundTransparency = 0.5
- Survivor.Position = UDim2.new(0, 90, 0, 0)
- Survivor.Size = UDim2.new(0, 150, 0, 50)
- Survivor.Font = Enum.Font.SciFi
- Survivor.FontSize = Enum.FontSize.Size24
- Survivor.Text = "Survivor Gui"
- Survivor.TextColor3 = Color3.new(97, 0, 0)
- Survivor.TextSize = 24
- Spam.Name = "Spam Chat"
- Spam.Name = "Spam"
- Spam.Parent = Frame
- Spam.BackgroundColor3 = Color3.new(0, 0, 0)
- Spam.BackgroundTransparency = 0.5
- Spam.Position = UDim2.new(0, 90, 0, 106)
- Spam.Size = UDim2.new(0, 155, 0, 50)
- Spam.Font = Enum.Font.SciFi
- Spam.FontSize = Enum.FontSize.Size18
- Spam.Text = "Chat Spam"
- Spam.TextColor3 = Color3.new(97, 0, 0)
- Spam.TextSize = 18
- Enter.Name = "Enter"
- Enter.Parent = Frame
- Enter.BackgroundColor3 = Color3.new(0, 0, 0)
- Enter.BackgroundTransparency = 0.5
- Enter.Position = UDim2.new(0, 250, 0, 106)
- Enter.Size = UDim2.new(0, 50, 0, 50)
- Enter.Font = Enum.Font.SciFi
- Enter.FontSize = Enum.FontSize.Size18
- Enter.Text = "Enter"
- Enter.TextColor3 = Color3.new(97, 0, 0)
- Enter.TextSize = 18
- Coin.Name = "Coin"
- Coin.Parent = Frame
- Coin.BackgroundColor3 = Color3.new(0, 0, 0)
- Coin.BackgroundTransparency = 0.3
- Coin.Position = UDim2.new(0, 90, 0, 210)
- Coin.Size = UDim2.new(0, 155, 0, 50)
- Coin.Font = Enum.Font.SciFi
- Coin.FontSize = Enum.FontSize.Size18
- Coin.Text = "Coin Tp"
- Coin.TextColor3 = Color3.new(97, 0, 0)
- Coin.TextSize = 18
- Idols.Name = "Idols"
- Idols.Parent = Frame
- Idols.BackgroundColor3 = Color3.new(0, 0, 0)
- Idols.BackgroundTransparency = 0.5
- Idols.Position = UDim2.new(0, 90, 0, 314)
- Idols.Size = UDim2.new(0, 155, 0, 50)
- Idols.Font = Enum.Font.SciFi
- Idols.FontSize = Enum.FontSize.Size18
- Idols.Text = "Idols Tp"
- Idols.TextColor3 = Color3.new(97, 0, 0)
- Idols.TextSize = 18
- Enter.MouseButton1Click:connect(function()
- amount_of_msgs = 5
- for i = 1, amount_of_msgs do
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Spam.Text, "All")
- end
- end)
- Coin.MouseButton1Click:connect(function()
- while wait(.25) do
- for _, v in pairs(workspace.Misc.Coins:GetChildren()) do
- for _, q in pairs (v:GetChildren()) do
- q.CFrame = CFrame.new(workspace[game:GetService("Players").LocalPlayer.Name].Torso.Position)
- end
- end
- end
- end)
- Idols.MouseButton1Click:connect(function()
- while wait (5) do
- for _, v in pairs(workspace.Misc.Idols:GetChildren()) do
- v.CFrame = CFrame.new(workspace[game:GetService("Players").LocalPlayer.Name].Torso.Position)
- end
- end
- end)
Add Comment
Please, Sign In to add comment