Skip to content

Instantly share code, notes, and snippets.

View ScriptingRC's full-sized avatar
:electron:
Making scripts NOW

ScriptingRC

:electron:
Making scripts NOW
View GitHub Profile
@ScriptingRC
ScriptingRC / TresEnRayaScript.lua
Created April 27, 2025 19:53
GameByScriptByRC.lua
-- Servicios
local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")
local SoundService = game:GetService("SoundService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
-- Configuración
local LOCAL_PLAYER = Players.LocalPlayer
local SOUNDS = {
Win = "rbxassetid://8304443672",
@ScriptingRC
ScriptingRC / ScripByRC
Created April 13, 2025 02:05
Give-Tools_Script
-- Script para Delta Executor - Tools Finder Mobile (Versión Mejorada)
local Players = game:GetService("Players")
local ServerStorage = game:GetService("ServerStorage")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")
local player = Players.LocalPlayer
local isMobile = UserInputService.TouchEnabled
-- Función mejorada para buscar tools
@ScriptingRC
ScriptingRC / ScriptByRC
Created April 13, 2025 00:10
Pop_It_Trade-Script_Ultra-Hub
-- Script para Delta Executor - Ultra Hub Mobile con Editor de Items
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
-- Detectar si es móvil
local isMobile = UserInputService.TouchEnabled
-- Crear la interfaz de usuario
@ScriptingRC
ScriptingRC / ScriptByRC
Created March 29, 2025 18:45
ESPMM2ScriptC:Kiriot22-ScriptByRC
-- Crear la GUI de Créditos
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Parent = game.CoreGui
local TextLabel = Instance.new("TextLabel")
TextLabel.Parent = ScreenGui
TextLabel.Size = UDim2.new(0.5, 0, 0.1, 0) -- Tamaño del mensaje (50% de la pantalla)
TextLabel.Position = UDim2.new(0.25, 0, 0.45, 0) -- Centrado en la pantalla
TextLabel.BackgroundTransparency = 1 -- Sin fondo
TextLabel.Text = "Credits to Kiriot22 and ScriptByRC"
@ScriptingRC
ScriptingRC / ScriptByRC
Created March 29, 2025 07:33
NaturalDisasterScript
if not game:IsLoaded() then
game.Loaded:Wait()
end
local player = game.Players.LocalPlayer
local playerGui = player:FindFirstChild("PlayerGui")
if not playerGui then return end
local screenGui = Instance.new("ScreenGui")
@ScriptingRC
ScriptingRC / RandomChannel
Created March 29, 2025 07:28
NaturalDisasterScript
if not game:IsLoaded() then
game.Loaded:Wait()
end
local player = game.Players.LocalPlayer
local playerGui = player:FindFirstChild("PlayerGui")
if not playerGui then return end
local screenGui = Instance.new("ScreenGui")
@ScriptingRC
ScriptingRC / ByRcScripting
Created March 14, 2025 16:14
R6ScriptAnimation
-- Crear la GUI en StarterGui
local player = game.Players.LocalPlayer
local screenGui = Instance.new("ScreenGui")
screenGui.Parent = player:WaitForChild("PlayerGui")
-- Crear el TextButton
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 200, 0, 50) -- Tamaño del botón
button.Position = UDim2.new(0.5, -100, 0.5, -25) -- Posición centrada en la pantalla
button.Text = "¡Ejecutar Script!"
-- Crear la GUI en StarterGui
local player = game.Players.LocalPlayer
local screenGui = Instance.new("ScreenGui")
screenGui.Parent = player:WaitForChild("PlayerGui")
-- Crear el TextButton
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 200, 0, 50) -- Tamaño del botón
button.Position = UDim2.new(0.5, -100, 0.5, -25) -- Posición centrada en la pantalla
button.Text = "¡Ejecutar Script!"
local player = game.Players.LocalPlayer
-- Función para resaltar jugadores
local function highlightPlayers()
for _, otherPlayer in pairs(game.Players:GetPlayers()) do
if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character:FindFirstChild("Head") then
-- Crear Highlight rojo
if not otherPlayer.Character:FindFirstChild("Highlight") then
local highlight = Instance.new("Highlight")
highlight.FillColor = Color3.fromRGB(255, 0, 0) -- Rojo