Skip to content

Instantly share code, notes, and snippets.

View SolomonyMC's full-sized avatar

SolomonyMC

  • Joined Oct 10, 2025
View GitHub Profile
local scriptString = [[
task.wait(2) -- Retraso para asegurar que PlayerGui y el personaje estén listos
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local character = nil
local rootPart = nil
local humanoid = nil
local camera = workspace.CurrentCamera
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local character = player.Character
local rootPart = character and character:FindFirstChild("HumanoidRootPart")
local humanoid = character and character:FindFirstChild("Humanoid")
local camera = workspace.CurrentCamera