ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script 📌
4.5k Views

Fast Shop Opening

Universal Script 📌Uploaded by
1 year ago
Please login to perform these actions:

Description

This script creates 2 buttons with 2 shops Seed Shop, Gear shop.

View Raw
Edited By: floppa_scripter Download


Comments
3
User profile picture
floppa_scripter 1 year ago
thats grow a garden script
User profile picture
rirri0505 1 year ago
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Serviços local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer -- Variáveis local aimbotActive = false local wallCheckActive = false local espActive = false local npcAimbot = false local targetPart = "HumanoidRootPart" local customTargetEnabled = false local espTransparency = 1 -- GUI prin*l local screenGui = Instance.new("ScreenGui", game.CoreGui) screenGui.Name = "GunGui" local frame = Instance.new("Frame", screenGui) frame.Size = UDim2.new(0, 350, 0, 450) frame.Position = UDim2.new(0, 100, 0, 100) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 70) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 15) local *le = Instance.new("TextLabel", frame) *le.Size = UDim2.new(1, 0, 0, 40) *le.Text = "Gun GUI" *le.BackgroundTransparency = 1 *le.TextColor3 = Color3.new(1,1,1) *le.Font = Enum.Font.GothamBold *le.TextSize = 26 -- Tabs local tab1Btn = Instance.new("TextButton", frame) tab1Btn.Size = UDim2.new(0.5, 0, 0, 35) tab1Btn.Position = UDim2.new(0, 0, 0, 40) tab1Btn.Text = "Prin*l" tab1Btn.BackgroundColor3 = Color3.fromRGB(50, 50, 150) tab1Btn.TextColor3 = Color3.new(1,1,1) tab1Btn.Font = Enum.Font.GothamBold tab1Btn.TextSize = 18 local tab2Btn = Instance.new("TextButton", frame) tab2Btn.Size = UDim2.new(0.5, 0, 0, 35) tab2Btn.Position = UDim2.new(0.5, 0, 0, 40) tab2Btn.Text = "Config Aimbot" tab2Btn.BackgroundColor3 = Color3.fromRGB(50, 50, 150) tab2Btn.TextColor3 = Color3.new(1,1,1) tab2Btn.Font = Enum.Font.GothamBold tab2Btn.TextSize = 18 local tab1Frame = Instance.new("Frame", frame) tab1Fra
User profile picture
floppa_scripter 1 year ago
what
Please Login to add a comment.