Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local player = Instance.new("TextBox")
- local ID = Instance.new("TextBox")
- local item = Instance.new("TextBox")
- local kick = Instance.new("TextButton")
- local kill = Instance.new("TextButton")
- local spawn = Instance.new("TextButton")
- local play = Instance.new("TextButton")
- local credits = Instance.new("TextLabel")
- local chicken = Instance.new("TextButton")
- local destroy = Instance.new("TextButton")
- local open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0, 0.533333, 1)
- Frame.BackgroundTransparency = 0.55000001192093
- Frame.Position = UDim2.new(0.385165781, 0, 0.349671751, 0)
- Frame.Size = UDim2.new(0, 348, 0, 189)
- Frame.Active = true
- Frame.Draggable = true
- player.Name = "player"
- player.Parent = Frame
- player.BackgroundColor3 = Color3.new(1, 1, 1)
- player.BorderSizePixel = 0
- player.Size = UDim2.new(0, 79, 0, 46)
- player.Font = Enum.Font.SourceSans
- player.Text = "Player Name"
- player.TextColor3 = Color3.new(0, 0, 0)
- player.TextSize = 16
- ID.Name = "ID"
- ID.Parent = Frame
- ID.BackgroundColor3 = Color3.new(1, 1, 1)
- ID.BorderSizePixel = 0
- ID.Position = UDim2.new(0.727089822, 0, 0, 0)
- ID.Size = UDim2.new(0, 95, 0, 46)
- ID.Font = Enum.Font.SourceSans
- ID.Text = "Song ID"
- ID.TextColor3 = Color3.new(0, 0, 0)
- ID.TextSize = 16
- item.Name = "item"
- item.Parent = Frame
- item.BackgroundColor3 = Color3.new(1, 1, 1)
- item.BorderSizePixel = 0
- item.Position = UDim2.new(0.346303493, 0, 0, 0)
- item.Size = UDim2.new(0, 102, 0, 46)
- item.Font = Enum.Font.SourceSans
- item.Text = "Item Name"
- item.TextColor3 = Color3.new(0, 0, 0)
- item.TextSize = 16
- kick.Name = "kick"
- kick.Parent = Frame
- kick.BackgroundColor3 = Color3.new(0.666667, 0.333333, 0)
- kick.BackgroundTransparency = 1
- kick.BorderSizePixel = 0
- kick.Position = UDim2.new(0.00346616656, 0, 0.297807992, 0)
- kick.Size = UDim2.new(0, 97, 0, 39)
- kick.Font = Enum.Font.SourceSans
- kick.Text = "Kick Player"
- kick.TextColor3 = Color3.new(0, 0, 0)
- kick.TextSize = 14
- kick.MouseButton1Click:connect(function()
- local A_1 = "Destroy"
- local A_2 = game.Players[player.Text].Character
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.InteractItem
- Event:FireServer(A_1, A_2)
- end)
- kill.Name = "kill"
- kill.Parent = Frame
- kill.BackgroundColor3 = Color3.new(0.678431, 0.54902, 1)
- kill.BackgroundTransparency = 1
- kill.BorderSizePixel = 0
- kill.Position = UDim2.new(0.292890966, 0, 0.292517006, 0)
- kill.Size = UDim2.new(0, 97, 0, 39)
- kill.Font = Enum.Font.SourceSans
- kill.Text = "Kill Player"
- kill.TextColor3 = Color3.new(0, 0, 0)
- kill.TextSize = 14
- kill.MouseButton1Click:connect(function()
- local A_1 = "Destroy"
- local A_2 = game.Players[player.Text].Character.Head
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.InteractItem
- Event:FireServer(A_1, A_2)
- end)
- spawn.Name = "spawn"
- spawn.Parent = Frame
- spawn.BackgroundColor3 = Color3.new(0.537255, 0.227451, 1)
- spawn.BackgroundTransparency = 1
- spawn.BorderSizePixel = 0
- spawn.Position = UDim2.new(-0.0022809878, 0, 0.792894959, 0)
- spawn.Size = UDim2.new(0, 97, 0, 39)
- spawn.Font = Enum.Font.SourceSans
- spawn.Text = "Spawn Item"
- spawn.TextColor3 = Color3.new(0, 0, 0)
- spawn.TextSize = 14
- spawn.MouseButton1Click:connect(function()
- local p = game.Players.LocalPlayer.Character.Head.Position
- local A_1 = item.Text
- local A_2 = Vector3.new(p.x, p.y, p.z) + Vector3.new(0, 2, 0)
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.MakeItem
- Event:FireServer(A_1, A_2)
- end)
- play.Name = "play"
- play.Parent = Frame
- play.BackgroundColor3 = Color3.new(0.466667, 0.858824, 1)
- play.BackgroundTransparency = 1
- play.BorderSizePixel = 0
- play.Position = UDim2.new(0.292890966, 0, 0.792894959, 0)
- play.Size = UDim2.new(0, 97, 0, 39)
- play.Font = Enum.Font.SourceSans
- play.Text = "Play Song"
- play.TextColor3 = Color3.new(0, 0, 0)
- play.TextSize = 14
- play.MouseButton1Click:connect(function()
- for i,v in pairs(game.Players:GetPlayers()) do
- local A_1 = "rbxassetid://" ..ID.Text
- local A_2 = v.Character.HumanoidRootPart
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.PlaySound
- Event:FireServer(A_1, A_2)
- end
- end)
- credits.Name = "credits"
- credits.Parent = Frame
- credits.BackgroundColor3 = Color3.new(1, 1, 1)
- credits.BackgroundTransparency = 1
- credits.Position = UDim2.new(0.00346620055, 0, 0.493962854, 0)
- credits.Size = UDim2.new(0, 347, 0, 50)
- credits.Font = Enum.Font.SourceSans
- credits.Text = "Credits: Kai~Kun#0460 & Dog&Cats#5312"
- credits.TextColor3 = Color3.new(0, 0, 0)
- credits.TextSize = 20
- chicken.Name = "chicken"
- chicken.Parent = Frame
- chicken.BackgroundColor3 = Color3.new(1, 1, 1)
- chicken.BackgroundTransparency = 1
- chicken.Position = UDim2.new(0.637930989, 0, 0.291005284, 0)
- chicken.Size = UDim2.new(0, 118, 0, 39)
- chicken.Font = Enum.Font.SourceSans
- chicken.Text = "Kill Giant Chickens"
- chicken.TextColor3 = Color3.new(0, 0, 0)
- chicken.TextSize = 14
- chicken.MouseButton1Click:connect(function()
- local A_1 = game:GetService("Workspace").Animals["Giant Chicken"]
- local A_2 = 20000
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.DamageAnimal
- Event:FireServer(A_1, A_2)
- end)
- destroy.Name = "destroy"
- destroy.Parent = Frame
- destroy.BackgroundColor3 = Color3.new(1, 1, 1)
- destroy.BackgroundTransparency = 1
- destroy.Position = UDim2.new(0.637930989, 0, 0.788359761, 0)
- destroy.Size = UDim2.new(0, 118, 0, 39)
- destroy.Font = Enum.Font.SourceSans
- destroy.Text = "Destroy everything."
- destroy.TextColor3 = Color3.new(0, 0, 0)
- destroy.TextSize = 16
- destroy.MouseButton1Click:connect(function()
- for i,v in pairs(workspace:GetChildren()) do
- local A_1 = "Destroy"
- local A_2 = v
- local Event = game:GetService("ReplicatedStorage").Resources.Remotes.InteractItem
- Event:FireServer(A_1, A_2)
- end
- end)
- open.Name = "open"
- open.Parent = ScreenGui
- open.BackgroundColor3 = Color3.new(0, 0.533333, 1)
- open.BackgroundTransparency = 0.55000001192093
- open.Position = UDim2.new(0, 0, 0.897765338, 0)
- open.Size = UDim2.new(0, 151, 0, 55)
- open.Font = Enum.Font.SourceSans
- open.Text = "Open/Close"
- open.TextColor3 = Color3.new(0, 0, 0)
- open.TextSize = 20
- open.MouseButton1Click:connect(function()
- if Frame.Visible == false then
- Frame.Visible = true
- else
- Frame.Visible = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement