Use 'Join Server' above to join this community.
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local RunService = game:GetService("RunService")
local TweenService = game:GetService("TweenService")
local StarterGui = game:GetService("StarterGui")
local hue = 0
local function getRainbow()
hue = (hue + 0.01) % 1
return Color3.fromHSV(hue, 1, 1)
end
-- ========== Loading Screen ==========
local loadingGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui"))
loadingGui.Name = "LoadingGui"
local loadingFrame = Instance.new("Frame", loadingGui)
loadingFrame.Size = UDim2.new(1, 0, 1, 0)
loadingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
local loadingText = Instance.new("TextLabel", loadingFrame)
loadingText.Size = UDim2.new(0, 400, 0, 60)
loadingText.Position = UDim2.new(0.5, -200, 0.5, -80)
loadingText.Text = "Loading Script..."
loadingText.TextColor3 = getRainbow()
loadingText.TextSize = 48
loadingText.Font = Enum.Font.GothamBlack
loadingText.BackgroundTransparency = 1
local loadin
Use 'Join Server' above to join this community.