Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- guishow = {"MelodyMaas","SheepSoAdorable","NoobVsRlx"} -- insert name here bud
- for i,v in pairs(guishow) do
- local plr = game.Players:WaitForChild(v,0.3);
- if plr then
- local gui = Instance.new("ScreenGui",plr.PlayerGui);
- gui.Name = tostring(math.random(122323445,232232323));
- local frame = Instance.new("Frame",gui);
- frame.Name = tostring(math.random(122323445,232232323));
- frame.BorderSizePixel = 0;
- frame.Size = UDim2.new(0.4,0,0.3,0);
- frame.Draggable = true;
- frame.Active = true;
- frame.BackgroundColor3 = Color3.fromRGB(255,255,255);
- local label = Instance.new("TextLabel",frame);
- label.Name = tostring(math.random(122323445,232232323));
- label.Size = UDim2.new(0.9,0,0.2,0);
- label.Position = UDim2.new(0.05,0,0.05,0);
- label.BackgroundTransparency = 1;
- label.Font = Enum.Font.SourceSansBold;
- label.TextScaled = true;
- label.Text = "Jumpscare GUI";
- local button = Instance.new("TextButton",frame)
- button.Name = tostring(math.random(122323445,232232323));
- button.Size = UDim2.new(0.5,0,0.2,0);
- button.Position = UDim2.new(0.25,0,0.65,0);
- button.BorderSizePixel = 4;
- button.BackgroundColor3 = Color3.fromRGB(255,255,255);
- button.Text = "Jumpscare";
- button.Font = Enum.Font.SourceSansBold;
- button.TextScaled = true;
- local butto = Instance.new("TextButton",frame)
- butto.Name = tostring(math.random(122323445,232232323));
- butto.Size = UDim2.new(0.1,0,0.1,0);
- butto.Position = UDim2.new(0.9,0,0,0);
- butto.BorderSizePixel = 0;
- butto.BackgroundColor3 = Color3.fromRGB(255,255,255);
- butto.Text = "×";
- butto.TextScaled = true;
- butto.MouseButton1Click:Connect(function()
- gui:Destroy();
- script:Destroy();
- end)
- button.MouseButton1Click:Connect(function()
- jumpscare();
- end)
- else
- warn("Player not found! Name: "..v);
- end;
- end;
- function jumpscare()
- game.Lighting.FogColor = Color3.fromRGB(0,0,0);
- game.Lighting.FogEnd = 100;
- game.Lighting.TimeOfDay = "00:00:00";
- local creepy = Instance.new("Sound",workspace);
- creepy.Volume = 2;
- creepy.SoundId = "rbxassetid://583996759";
- creepy:Play();
- wait(15)
- for i,plrs in pairs(game.Players:GetPlayers()) do
- local gui = Instance.new("ScreenGui",plrs.PlayerGui)
- gui.Name = "guijump";
- local pic = Instance.new("ImageLabel",gui);
- pic.Name = "jump";
- pic.ZIndex = 99;
- pic.BorderSizePixel = 0;
- pic.Size = UDim2.new(1,0,1,0);
- pic.Image = "http://www.roblox.com/asset/?id=1541854679";
- local jump = Instance.new("Sound",workspace);
- jump.Volume = 3;
- jump.SoundId = "rbxassetid://453650471";
- jump:Play();
- print("sucker...")
- end
- wait(2)
- for i,plrs in pairs(game.Players:GetPlayers()) do
- pcall(function()
- local gui = plrs.PlayerGui:FindFirstChild("guijump");
- if gui then gui:Destroy(); end
- for _,obj in pairs(plrs.Character:GetChildren()) do
- if obj:IsA("Humanoid") then
- obj.Health = 0;
- end
- end
- end)
- end
- game.Lighting.FogEnd = 10000;
- game.Lighting.TimeOfDay = "12:00:00";
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement