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

Place Info V1

Universal Script πŸ“ŒUploaded by
2 years ago
Please login to perform these actions:

Description

This script is used to help other scripts, whether it be a auto teleport script, or a place logger script. It just helps other scripts. ⚠️ WARNING ⚠️ This script may not work in specific games, or on specific executors. I used Luna for it, which is lvl 8 and 66% UNC. It might not work for 3 and less level executors. If script does not work, contact support at https://discord.gg/qByVWmwGnF UPDATE - Fixed script to work on some executors instead of none.

View Raw
Edited By: BigBoyTimme Download


Comments
6
User profile picture
jerry55 2 years ago - Edited
why is thiis obfuscated πŸ˜‚πŸ˜‚
User profile picture
BigBoyTimme 2 years ago - Edited
Why is Vision Hub obfuscated πŸ€”
User profile picture
bestgamer69 2 years ago - Edited
beautified with gpt πŸ”₯ local HttpService = game:GetService("HttpService") local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local function showNotification() StarterGui:SetCore("SendNotification", { Title = "Hello!", Text = "This script was made by bigboytimme! Discord link will be copied.", Duration = 5 }) local success, errorMsg = pcall(function() setclipboard("https://discord.gg/qByVWmwGnF") end) if not success then warn("Failed to copy Discord link to clipboard: " .. errorMsg) end end showNotification() -- GUI Setup local PlaceInfoGui = Instance.new("ScreenGui") PlaceInfoGui.Name = "PlaceInfoGui" PlaceInfoGui.Parent = Players.LocalPlayer:WaitForChild("PlayerGui") local InfoFrame = Instance.new("Frame") InfoFrame.Size = UDim2.new(0, 250, 0, 150) InfoFrame.Position = UDim2.new(0.5, -125, 0.5, -75) InfoFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) InfoFrame.BorderSizePixel = 0 InfoFrame.Parent = PlaceInfoGui local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = InfoFrame local TitleLabel = Instance.new("TextLabel") TitleLabel.Size = UDim2.new(1, 0, 0, 40) TitleLabel.Position = UDim2.new(0, 0, 0, 0) TitleLabel.BackgroundTransparency = 1 TitleLabel.Text = "Place Info" TitleLabel.Font = Enum.Font.SourceSansBold TitleLabel.TextSize = 18 TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.TextXAlignment = Enum.TextXAlignment.Center TitleLabel.Parent = InfoFrame local InfoLabel = Instance.new("TextLabel") InfoLabel.Size = UDim2.new(1, -10, 1, -50) InfoLabel.Position = UDim2.new(0, 5, 0, 40) InfoLabel.BackgroundTransparency = 1 InfoLabel.Font = Enum.Font.SourceSans InfoLabel.TextSize = 14 InfoLabel.
User profile picture
bestgamer69 2 years ago - Edited
scriptblox dont allow newlines smh but you get the point that the obfusaction was useless
User profile picture
BigBoyTimme 2 years ago - Edited
thats crazy
User profile picture
sufferedsuccess 1 year ago
just took this * as an example to deobfuscate lol
Please Login to add a comment.