-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Frame_2 = Instance.new("Frame") local TextBox = Instance.new("TextBox") local TextButton = Instance.new("TextButton") local TextButton_2 = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(72, 72, 72) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.116316691, 0, 0.10633947, 0) Frame.Size = UDim2.new(0, 233, 0, 24) Frame_2.Parent = Frame Frame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame_2.BorderSizePixel = 0 Frame_2.Position = UDim2.new(-0.00300919032, 0, 0.991564453, 0) Frame_2.Size = UDim2.new(0, 234, 0, 145) TextBox.Parent = Frame_2 TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 3 TextBox.Position = UDim2.new(0.0341880359, 0, 0.0206896551, 0) TextBox.Size = UDim2.new(0, 160, 0, 138) TextBox.ClearTextOnFocus = false TextBox.Font = Enum.Font.SourceSans TextBox.MultiLine = true TextBox.PlaceholderText = "PlaceTheHolder" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextSize = 14.000 TextBox.TextWrapped = true TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.TextYAlignment = Enum.TextYAlignment.Top TextButton.Parent = Frame_2 TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.7636801, 0, 0.0896551758, 0) TextButton.Size = UDim2.new(0, 49, 0, 62) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "EXE" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 14.000 TextButton_2.Parent = Frame_2 TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.BorderSizePixel = 0 TextButton_2.Position = UDim2.new(0.7636801, 0, 0.54482758, 0) TextButton_2.Size = UDim2.new(0, 49, 0, 62) TextButton_2.Font = Enum.Font.SourceSans TextButton_2.Text = "Clear" TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.TextSize = 14.000 TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(-0.197424889, 0, -0.541666687, 0) TextLabel.Size = UDim2.new(0, 200, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Stigma Remake " TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 14.000 -- Scripts: local function SGHBJ_fake_script() -- TextButton.LocalScript local script = Instance.new('LocalScript', TextButton) script.Parent.MouseButton1Click:Connect(function() for _, v in pairs(game:GetDescendants()) do if v:IsA("BasePart") then v:SetNetworkOwner(game.Players.LocalPlayer) end end for _, v in pairs(game.ReplicatedStorage:GetDescendants()) do if v:IsA("RemoteEvent") or v:IsA("RemoteFunction") then v:FireServer(script.Parent.Parent.TextBox.Text) v:InvokeServer(script.Parent.Parent.TextBox.Text) end end end) end coroutine.wrap(SGHBJ_fake_script)() local function XSOZDQ_fake_script() -- TextButton_2.LocalScript local script = Instance.new('LocalScript', TextButton_2) script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.TextBox.Text = "" end) end coroutine.wrap(XSOZDQ_fake_script)() local function ZBJTMR_fake_script() -- Frame.DragScript local script = Instance.new('LocalScript', Frame) --Not made by me, check out this video: https://www.youtube.com/watch?v=z25nyNBG7Js&t=22s --Put this inside of your Frame and configure the speed if you would like. --Enjoy! Credits go to: https://www.youtube.com/watch?v=z25nyNBG7Js&t=22s local UIS = game:GetService('UserInputService') local frame = script.Parent local dragToggle = nil local dragSpeed = 0.25 local dragStart = nil local startPos = nil local function updateInput(input) local delta = input.Position - dragStart local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play() end frame.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then dragToggle = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragToggle = false end end) end end) UIS.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then if dragToggle then updateInput(input) end end end) end coroutine.wrap(ZBJTMR_fake_script)()