ADVERTISEMENTREMOVE ADS
Game icon

Blocks n' Props

Blocks n' Props
2 months ago
Script preview thumbnail
Script Preview

Description

Features:

  1. Remove KillBrick – Instantly deletes the KillBrick so you can safely play without dying from it.

  2. Instant Win – Teleports your character directly to the Win Button allowing you to instantly win the round.

  3. Noclip – Lets you walk through walls and objects by disabling collisions for your character.

ADVERTISEMENTREMOVE ADS
82 Lines • 2.08 KiB
Raw
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Blocks n' props script",
LoadingTitle = "Loading...",
LoadingSubtitle = "...",
ConfigurationSaving = {
Enabled = false
},
Discord = {
Enabled = false
},
KeySystem = false
})
local MainTab = Window:CreateTab("Main", 4483362458)
MainTab:CreateButton({
Name = "Remove KillBrick",
Callback = function()
local killbrick = game.Workspace:FindFirstChild("Map"):FindFirstChild("Classic"):FindFirstChild("KillBrick")
if killbrick then
killbrick:Destroy()
Rayfield:Notify({
Title = "Removed",
Content = "KillBrick Removed!",
Duration = 3
})
else
Rayfield:Notify({
Title = "Error",
Content = "KillBrick Not existing!",
Duration = 3
})
end
end,
})
MainTab:CreateButton({
Name = "Instant Win",
Callback = function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local buttonPart = game.Workspace:FindFirstChild("Map"):FindFirstChild("Classic"):FindFirstChild("Button")
if buttonPart then
hrp.CFrame = buttonPart.CFrame + Vector3.new(0, 3, 0)
else
Rayfield:Notify({
Title = "Error",
Content = "Cannot found button",
Duration = 3
})
end
end,
})
local noclipEnabled = false
MainTab:CreateToggle({
Name = "Noclip",
CurrentValue = false,
Flag = "NoclipToggle",
Callback = function(Value)
noclipEnabled = Value
end,
})
game:GetService("RunService").Stepped:Connect(function()
if noclipEnabled then
for _, part in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if part:IsA("BasePart") then
part.CanCollide = false
end
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS