ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script ๐Ÿ“Œ
1.1k Views

Speed tpwalk davilucas123jc

Universal Script ๐Ÿ“ŒUploaded by
10 months ago
Please login to perform these actions:

Description

This script makes you run very fast . . . (script made by gpt chat)

View Raw
Edited By: davilucasjunqueirac Download


Comments
1
User profile picture
whereareyougrandma 10 months ago
Here is a better version of you chat gpt script I'm using delta i made your script have a toggle which open and close and also move hope you like it --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local userInputService = game:GetService("UserInputService") -- GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "SpeedGui" screenGui.Parent = playerGui screenGui.ResetOnS* = false -- Toggle Button (movable) local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0, 100, 0, 40) toggleButton.Position = UDim2.new(0, 10, 0, 10) toggleButton.BackgroundColor3 = Color3.fromRGB(200, 200, 200) toggleButton.TextColor3 = Color3.new(0, 0, 0) toggleButton.Font = Enum.Font.SourceSansBold toggleButton.TextSize = 20 toggleButton.Text = "Toggle" toggleButton.Parent = screenGui toggleButton.Active = true -- Speed GUI Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 160, 0, 230) frame.Position = UDim2.new(0.5, -80, 0.5, -115) frame.BackgroundColor3 = Color3.new(1, 1, 1) frame.BorderColor3 = Color3.new(0, 0, 0) frame.Visible = false -- hidden by default frame.Active = true frame.Parent = screenGui -- Speed Button local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(1, -20, 0, 40) speedButton.Position = UDim2.new(0, 10, 0, 10) speedButton.BackgroundColor3 = Color3.new(1, 1, 1) speedButton.BorderColor3 = Color3.new(0, 0, 0) speedButton.Text = "Speed" speedButton.TextColor3 = Color3.new(0, 0, 0) speedButton.Font = Enum.Font.SourceSansBold speedButton.TextSize = 20 speedButton.Parent = frame -- Input Box local inputBox = Instance.new("TextBox") inputBox.Size = UDim2.new(1
Please Login to add a comment.