Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- made by: Clinton8Luke
- literally made this in notepad in 5 minutes lol
- ]]
- local player = game:GetService("Players").LocalPlayer
- local Word = game:GetService("Workspace"):WaitForChild("Script"):findFirstChild("CurrentWord") --stringvalue
- local screenGui = Instance.new("ScreenGui", player.PlayerGui)
- local mainFrame = Instance.new("Frame", screenGui)
- mainFrame.Size = UDim2.new(.66, 0, .1, 0)
- mainFrame.Position = UDim2.new(.33/2, 0, 0, 0)
- mainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
- mainFrame.BackgroundTransparency = .5
- local lblText = Instance.new("TextLabel", mainFrame)
- lblText.Size = UDim2.new(1, 0, 1, 0)
- lblText.BackgroundTransparency = 1
- lblText.TextColor3 = Color3.new(0, 0, 0)
- lblText.TextScaled = true
- lblText.Text = ("Current Word: "..Word.Value)
- Word.Changed:connect(function()
- lblText.Text = ("Current Word: "..Word.Value)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement