0x876 - Roblox Scripts

If you are a programmer-gamer, you have surely already tried creating your own Roblox scripts to inject, not necessarily to spoil the experience for others, but rather out of curiosity.

Here are mine.

multi-tool 1[unfinished]

A simple tool for doing fun things in all games.

features :


if game.Players.LocalPlayer.PlayerGui:FindFirstChild("HG") then
    game.Players.LocalPlayer.PlayerGui:FindFirstChild("HG"):Destroy()
end

local player = game.Players.LocalPlayer
local character = player.Character
local HRP = character:FindFirstChild("HumanoidRootPart")

local SG = Instance.new("ScreenGui")
SG.Parent = game.Players.LocalPlayer.PlayerGui
SG.Name = "HG"
SG.Enabled = true

local sf = Instance.new("ScrollingFrame")
sf.Parent = SG
sf.Position = UDim2.new(1, -200, 0.5, 0)
sf.Size = UDim2.new(0, 203, 0, 165)
sf.AnchorPoint = Vector2.new(1, 0.5)
sf.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
sf.BackgroundTransparency = 0.5

local UIlistlayout = Instance.new('UIListLayout')
UIlistlayout.Parent = sf
UIlistlayout.Name = "UIlist"

local tp_Alice = Instance.new("TextButton")
tp_Alice.Parent = sf
tp_Alice.Text = "Tp to Alice"
tp_Alice.Size = UDim2.new(1,0,0,30)
tp_Alice.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
tp_Alice.BackgroundTransparency = 0.5
tp_Alice.TextColor3 = Color3.fromRGB(255,255,255)

local follow_Alice = Instance.new("TextButton")
follow_Alice.Parent = sf
follow_Alice.Text = "Follow Alice"
follow_Alice.Size = UDim2.new(1,0,0,30)
follow_Alice.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
follow_Alice.BackgroundTransparency = 0.5
follow_Alice.TextColor3 = Color3.fromRGB(255,255,255)

tp_Alice.Activated:Connect(function(inputObject: InputObject, clickCount: number)
	if game.Players:FindFirstChild("ROBLOX_USER") then
        HRP = game.Players.ROBLOX_USER.Character.HumanoidRootPart.CFrame
    else
        print("Impossible de tp à Alice, character dans un autre dossier ou Alice pas la")
    end

end)

local spd1 = Instance.new("TextButton")
spd1.Parent = sf
spd1.Text = "WalkSpeed 50"
spd1.Size = UDim2.new(1,0,0,30)
spd1.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
spd1.BackgroundTransparency = 0.5
spd1.TextColor3 = Color3.fromRGB(255,255,255)

local spd2 = Instance.new("TextButton")
spd2.Parent = sf
spd2.Text = "WalkSpeed 100"
spd2.Size = UDim2.new(1,0,0,30)
spd2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
spd2.BackgroundTransparency = 0.5
spd2.TextColor3 = Color3.fromRGB(255,255,255)

local spd3 = Instance.new("TextButton")
spd3.Parent = sf
spd3.Text = "WalkSpeed 500"
spd3.Size = UDim2.new(1,0,0,30)
spd3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
spd3.BackgroundTransparency = 0.5
spd3.TextColor3 = Color3.fromRGB(255,255,255)
    

Setup

To use my scripts, I hosted a local HTTP server where my scripts were accessible at the root, because it was easier to edit the scripts in my IDE than in the script injector. Here is the command I used in the injector to link to the local server:

loadstring(game:HttpGet("http://127.0.0.1:8080/multi-tool-1.lua"))()