Universal Script 📌
2.0k Views

fall down

Universal Script 📌Uploaded by
11 months ago
Please login to perform these actions:

Description

fall down

View Raw
Edited By: sasinick Download


Comments
2
User profile picture
Poluf 1 week ago
-- ============================================= -- 🚀 СКРИПТ ПРЫЖКА + ТЕЛЕПОРТАЦИЯ 🚀 -- С КРАСИВОЙ КНОПКОЙ НА ЭКРАНЕ -- ============================================= -- ЛОКАЛЬНЫЙ СКРИПТ (поместите в StarterPlayerScripts) -- ============================================= local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer -- ============================================= -- СОЗДАНИЕ GUI -- ============================================= local screenGui = Instance.new("ScreenGui") screenGui.Name = "JumpTeleportGUI" screenGui.Parent = player:WaitForChild("PlayerGui") screenGui.ResetOnS* = false screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- ============================================= -- ГЛАВНАЯ КНОПКА -- ============================================= local buttonFrame = Instance.new("Frame") buttonFrame.Size = UDim2.new(0, 120, 0, 120) buttonFrame.Position = UDim2.new(0.5, -60, 0.7, 0) -- По центру внизу buttonFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 60) buttonFrame.BackgroundTransparency = 0 buttonFrame.BorderSizePixel = 2 buttonFrame.BorderColor3 = Color3.fromRGB(60, 120, 255) buttonFrame.Parent = screenGui buttonFrame.ZIndex = 2 local buttonCorner = Instance.new("UICorner") buttonCorner.CornerRadius = UDim.new(1, 0) -- Круглая кнопка buttonCorner.Parent = buttonFrame -- Тень кнопки local shadow = Instance.new("ImageLabel") shadow.Size = UDim2.new(1, 20, 1, 20) shadow.Position = UDim2.new(0, -10, 0, -10) shadow.BackgroundTransparency = 1 shadow.Image = "rbx*etid://1316045377" shadow.ImageColor3 = Color3.fromRGB(0, 0, 0) shadow.ImageTransparency = 0.6 shadow.ZIndex = 0 shadow.Parent
User profile picture
Poluf 1 week ago
Это тоже самое только с кнопкой
Please Login to add a comment.