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

TPWalk GUI

Universal Script 📌Uploaded by
2 years ago
Please login to perform these actions:

Description

This is simple GUI that can Toggle tpwalk.

View Raw
Edited By: alimkulov Download


Comments
1
User profile picture
MiniCapy 1 year ago
Деобф изи сделать local Players = game:GetService("Players") local CoreGui = game:GetService("CoreGui") local RunService = game:GetService("RunService") local Player = Players.LocalPlayer local speaker = Player local hb = RunService.Heartbeat local TPGui = Instance.new("ScreenGui") local BG = Instance.new("Frame") local *le = Instance.new("TextLabel") local Toggle = Instance.new("TextButton") local Credit = Instance.new("TextLabel") local tpwalking = false TPGui.Name = "TPWalkingGUI" TPGui.Parent = CoreGui BG.Name = "BG" BG.Parent = TPGui BG.BackgroundColor3 = Color3.fromRGB(30, 30, 30) BG.BorderSizePixel = 2 BG.Position = UDim2.new(0.3, 0, 0.4, 0) BG.Size = UDim2.new(0, 220, 0, 160) BG.Active = true BG.Draggable = true *le.Name = "*le" *le.Parent = BG *le.BackgroundColor3 = Color3.fromRGB(50, 50, 200) *le.BorderSizePixel = 0 *le.Size = UDim2.new(1, 0, 0, 30) *le.Font = Enum.Font.GothamBold *le.Text = "TP Walking" *le.TextColor3 = Color3.fromRGB(255, 255, 255) *le.TextSize = 24 Toggle.Name = "Toggle" Toggle.Parent = BG Toggle.BackgroundColor3 = Color3.fromRGB(70, 130, 180) Toggle.Size = UDim2.new(0.9, 0, 0, 40) Toggle.Position = UDim2.new(0.05, 0, 0.35, 0) Toggle.Text = "Start TP Walking" Toggle.TextColor3 = Color3.fromRGB(255, 255, 255) Toggle.Font = Enum.Font.GothamSemibold Toggle.TextSize = 20 Toggle.BorderSizePixel = 0 Toggle.BackgroundTransparency = 0.1 Credit.Name = "Credit" Credit.Parent = BG Credit.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Credit.BackgroundTransparency = 1 Credit.Position = UDim2.new(0.05, 0, 0.8, 0) Credit.Size = UDim2.new(0.9, 0, 0, 15) Credit.Font = Enum.Font.Gotham Credit.Text = "Created by ebnutyichel - Telegram;\nBloxScipts - alimkulov" Credit.TextColor3 = Color3.fromRGB(255, 255, 255) Credit.TextSize =
Please Login to add a comment.